Lines Matching defs:iType
28790 ** allocated by the system mutex implementation. Variable iType is usually set
28798 int iType;
28834 static sqlite3_mutex *checkMutexAlloc(int iType){
28843 if( iType<2 ){
28846 p->iType = iType;
28849 if( iType-2>=ArraySize(staticMutexes) ){
28854 p = &staticMutexes[iType-2];
28858 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType);
28860 if( iType<2 ){
28879 if( ((CheckMutex*)p)->iType<2 )
28898 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){
28952 assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE );
28953 pCheck->iType = SQLITE_MUTEX_WARNONCONTENTION;
29477 static sqlite3_mutex *pthreadMutexAlloc(int iType){
29493 switch( iType ){
29527 if( iType-2<0 || iType-2>=ArraySize(staticMutexes) ){
29532 p = &staticMutexes[iType-2];
29537 assert( p==0 || p->id==iType );
30025 static sqlite3_mutex *winMutexAlloc(int iType){
30028 switch( iType ){
30033 p->id = iType;
30049 if( iType-2<0 || iType-2>=ArraySize(winMutex_staticMutexes) ){
30054 p = &winMutex_staticMutexes[iType-2];
30063 assert( p==0 || p->id==iType );
91796 int iType = sqlite3_value_type( columnMem(pStmt,i) );
91798 return iType;