Lines Matching refs:iType

29297   int iType;  member
29333 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc() argument
29342 if( iType<2 ){ in checkMutexAlloc()
29345 p->iType = iType; in checkMutexAlloc()
29348 if( iType-2>=ArraySize(staticMutexes) ){ in checkMutexAlloc()
29353 p = &staticMutexes[iType-2]; in checkMutexAlloc()
29357 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); in checkMutexAlloc()
29359 if( iType<2 ){ in checkMutexAlloc()
29378 if( ((CheckMutex*)p)->iType<2 ) in checkMutexFree()
29397 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ in checkMutexEnter()
29451 assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE ); in sqlite3MutexWarnOnContention()
29452 pCheck->iType = SQLITE_MUTEX_WARNONCONTENTION; in sqlite3MutexWarnOnContention()
29989 static sqlite3_mutex *pthreadMutexAlloc(int iType){ in pthreadMutexAlloc() argument
30005 switch( iType ){ in pthreadMutexAlloc()
30039 if( iType-2<0 || iType-2>=ArraySize(staticMutexes) ){ in pthreadMutexAlloc()
30044 p = &staticMutexes[iType-2]; in pthreadMutexAlloc()
30049 assert( p==0 || p->id==iType ); in pthreadMutexAlloc()
30539 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc() argument
30542 switch( iType ){ in winMutexAlloc()
30547 p->id = iType; in winMutexAlloc()
30563 if( iType-2<0 || iType-2>=ArraySize(winMutex_staticMutexes) ){ in winMutexAlloc()
30568 p = &winMutex_staticMutexes[iType-2]; in winMutexAlloc()
30577 assert( p==0 || p->id==iType ); in winMutexAlloc()
92880 int iType = sqlite3_value_type( columnMem(pStmt,i) ); local
92882 return iType;