Lines Matching refs:iType

28798   int iType;  member
28834 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc() argument
28843 if( iType<2 ){ in checkMutexAlloc()
28846 p->iType = iType; in checkMutexAlloc()
28849 if( iType-2>=ArraySize(staticMutexes) ){ in checkMutexAlloc()
28854 p = &staticMutexes[iType-2]; in checkMutexAlloc()
28858 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); in checkMutexAlloc()
28860 if( iType<2 ){ in checkMutexAlloc()
28879 if( ((CheckMutex*)p)->iType<2 ) in checkMutexFree()
28898 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ in checkMutexEnter()
28952 assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE ); in sqlite3MutexWarnOnContention()
28953 pCheck->iType = SQLITE_MUTEX_WARNONCONTENTION; in sqlite3MutexWarnOnContention()
29477 static sqlite3_mutex *pthreadMutexAlloc(int iType){ in pthreadMutexAlloc() argument
29493 switch( iType ){ in pthreadMutexAlloc()
29527 if( iType-2<0 || iType-2>=ArraySize(staticMutexes) ){ in pthreadMutexAlloc()
29532 p = &staticMutexes[iType-2]; in pthreadMutexAlloc()
29537 assert( p==0 || p->id==iType ); in pthreadMutexAlloc()
30025 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc() argument
30028 switch( iType ){ in winMutexAlloc()
30033 p->id = iType; in winMutexAlloc()
30049 if( iType-2<0 || iType-2>=ArraySize(winMutex_staticMutexes) ){ in winMutexAlloc()
30054 p = &winMutex_staticMutexes[iType-2]; in winMutexAlloc()
30063 assert( p==0 || p->id==iType ); in winMutexAlloc()
91796 int iType = sqlite3_value_type( columnMem(pStmt,i) );
91798 return iType;