Lines Matching refs:iType
56 int iType; member
92 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc() argument
101 if( iType<2 ){ in checkMutexAlloc()
104 p->iType = iType; in checkMutexAlloc()
107 if( iType-2>=ArraySize(staticMutexes) ){ in checkMutexAlloc()
112 p = &staticMutexes[iType-2]; in checkMutexAlloc()
116 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); in checkMutexAlloc()
118 if( iType<2 ){ in checkMutexAlloc()
137 if( ((CheckMutex*)p)->iType<2 ) in checkMutexFree()
156 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ in checkMutexEnter()
210 assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE ); in sqlite3MutexWarnOnContention()
211 pCheck->iType = SQLITE_MUTEX_WARNONCONTENTION; in sqlite3MutexWarnOnContention()