Lines Matching refs:pState
384 for ( HeapState* pState = mpState; pState; pState = pState->pPrevState ) in FreeTail() local
386 pState->tailAllocator = mHeapEnd; in FreeTail()
420 HeapState* pState = new( stateHeap ) HeapState; in RecordState() local
421 if ( pState == NULL ) in RecordState()
427 pState->tagName = tagName; in RecordState()
428 pState->headAllocator = oldHeadAllocator; in RecordState()
429 pState->tailAllocator = mTailAllocator; in RecordState()
430 pState->pPrevState = mpState; in RecordState()
432 mpState = pState; in RecordState()
469 HeapState* pState = mpState; in FreeByState() local
474 for ( ; pState; pState = pState->pPrevState ) in FreeByState()
476 if ( pState->tagName == tagName ) in FreeByState()
483 if ( pState == NULL ) in FreeByState()
492 mHeadAllocator = pState->headAllocator; in FreeByState()
493 mTailAllocator = pState->tailAllocator; in FreeByState()
494 mpState = pState->pPrevState; in FreeByState()