Lines Matching refs:iType
26664 int iType;
26700 static sqlite3_mutex *checkMutexAlloc(int iType){
26709 if( iType<2 ){
26712 p->iType = iType;
26715 if( iType-2>=ArraySize(staticMutexes) ){
26720 p = &staticMutexes[iType-2];
26724 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType);
26726 if( iType<2 ){
26745 if( ((CheckMutex*)p)->iType<2 )
26764 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){
26818 assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE );
26819 pCheck->iType = SQLITE_MUTEX_WARNONCONTENTION;
27343 static sqlite3_mutex *pthreadMutexAlloc(int iType){
27359 switch( iType ){
27393 if( iType-2<0 || iType-2>=ArraySize(staticMutexes) ){
27398 p = &staticMutexes[iType-2];
27403 assert( p==0 || p->id==iType );
27891 static sqlite3_mutex *winMutexAlloc(int iType){
27894 switch( iType ){
27899 p->id = iType;
27915 if( iType-2<0 || iType-2>=ArraySize(winMutex_staticMutexes) ){
27920 p = &winMutex_staticMutexes[iType-2];
27929 assert( p==0 || p->id==iType );
85617 int iType = sqlite3_value_type( columnMem(pStmt,i) );
85619 return iType;