Lines Matching refs:id
40 static sqlite3_mutex *noopMutexAlloc(int id){ in noopMutexAlloc() argument
41 UNUSED_PARAMETER(id); in noopMutexAlloc()
81 int id; /* The mutex type */ member
109 static sqlite3_mutex *debugMutexAlloc(int id){ in debugMutexAlloc() argument
112 switch( id ){ in debugMutexAlloc()
117 pNew->id = id; in debugMutexAlloc()
124 if( id-2<0 || id-2>=ArraySize(aStatic) ){ in debugMutexAlloc()
129 pNew = &aStatic[id-2]; in debugMutexAlloc()
130 pNew->id = id; in debugMutexAlloc()
143 if( p->id==SQLITE_MUTEX_RECURSIVE || p->id==SQLITE_MUTEX_FAST ){ in debugMutexFree()
165 assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); in debugMutexEnter()
170 assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); in debugMutexTry()
185 assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); in debugMutexLeave()