Lines Matching defs:xMutexAlloc
8202 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
8230 ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory
8231 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
8243 sqlite3_mutex *(*xMutexAlloc)(int);
27684 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType);
27776 if( sqlite3GlobalConfig.mutex.xMutexAlloc==checkMutexAlloc ){
27789 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
27790 /* If the xMutexAlloc method has not been set, then the user did not
27816 pTo->xMutexAlloc = pFrom->xMutexAlloc;
27854 assert( sqlite3GlobalConfig.mutex.xMutexAlloc );
27855 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);
27863 assert( sqlite3GlobalConfig.mutex.xMutexAlloc );
27864 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);