Lines Matching refs:pReal
41 sqlite3_mutex *pReal; member
58 return g.m.xMutexHeld(p->pReal); in counterMutexHeld()
63 return g.m.xMutexNotheld(p->pReal); in counterMutexNotheld()
91 sqlite3_mutex *pReal; in counterMutexAlloc() local
98 pReal = g.m.xMutexAlloc(eType); in counterMutexAlloc()
99 if( !pReal ) return 0; in counterMutexAlloc()
111 pRet->pReal = pReal; in counterMutexAlloc()
120 g.m.xMutexFree(p->pReal); in counterMutexFree()
134 g.m.xMutexEnter(p->pReal); in counterMutexEnter()
146 return g.m.xMutexTry(p->pReal); in counterMutexTry()
153 g.m.xMutexLeave(p->pReal); in counterMutexLeave()