Lines Matching refs:pStack
257 GuardStack * pStack = static_cast< GuardStack * >(pData); in destroyAttachGuards() local
258 if (pStack != 0) in destroyAttachGuards()
260 while (!pStack->empty()) in destroyAttachGuards()
262 delete pStack->top(); in destroyAttachGuards()
263 pStack->pop(); in destroyAttachGuards()
265 delete pStack; in destroyAttachGuards()
1019 GuardStack * pStack in isThreadAttached() local
1021 return pStack != 0 && !pStack->empty(); in isThreadAttached()
1037 GuardStack * pStack in registerThread() local
1039 if (pStack == 0) in registerThread()
1041 pStack = new GuardStack; in registerThread()
1042 m_aAttachGuards.setData(pStack); in registerThread()
1046 pStack->push( in registerThread()
1074 GuardStack * pStack in revokeThread() local
1076 if (pStack == 0 || pStack->empty()) in revokeThread()
1082 delete pStack->top(); in revokeThread()
1083 pStack->pop(); in revokeThread()