Lines Matching refs:pState
382 for ( HeapState* pState = mpState; pState; pState = pState->pPrevState ) in FreeTail() local
384 pState->tailAllocator = mHeapEnd; in FreeTail()
418 HeapState* pState = new( stateHeap ) HeapState; in RecordState() local
419 if ( pState == NULL ) in RecordState()
425 pState->tagName = tagName; in RecordState()
426 pState->headAllocator = oldHeadAllocator; in RecordState()
427 pState->tailAllocator = mTailAllocator; in RecordState()
428 pState->pPrevState = mpState; in RecordState()
430 mpState = pState; in RecordState()
467 HeapState* pState = mpState; in FreeByState() local
472 for ( ; pState; pState = pState->pPrevState ) in FreeByState()
474 if ( pState->tagName == tagName ) in FreeByState()
481 if ( pState == NULL ) in FreeByState()
490 mHeadAllocator = pState->headAllocator; in FreeByState()
491 mTailAllocator = pState->tailAllocator; in FreeByState()
492 mpState = pState->pPrevState; in FreeByState()