Lines Matching refs:eType
42 int eType; member
90 static sqlite3_mutex *counterMutexAlloc(int eType){ in counterMutexAlloc() argument
95 assert( eType>=SQLITE_MUTEX_FAST ); in counterMutexAlloc()
96 assert( eType<=SQLITE_MUTEX_STATIC_VFS3 ); in counterMutexAlloc()
98 pReal = g.m.xMutexAlloc(eType); in counterMutexAlloc()
101 if( eType==SQLITE_MUTEX_FAST || eType==SQLITE_MUTEX_RECURSIVE ){ in counterMutexAlloc()
104 int eStaticType = eType - (MAX_MUTEXES - STATIC_MUTEXES); in counterMutexAlloc()
110 pRet->eType = eType; in counterMutexAlloc()
121 if( p->eType==SQLITE_MUTEX_FAST || p->eType==SQLITE_MUTEX_RECURSIVE ){ in counterMutexFree()
131 assert( p->eType>=0 ); in counterMutexEnter()
132 assert( p->eType<MAX_MUTEXES ); in counterMutexEnter()
133 g.aCounter[p->eType]++; in counterMutexEnter()
142 assert( p->eType>=0 ); in counterMutexTry()
143 assert( p->eType<MAX_MUTEXES ); in counterMutexTry()
144 g.aCounter[p->eType]++; in counterMutexTry()