Lines Matching refs:xMutexAlloc
8807 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
8835 ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory
8836 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
8848 sqlite3_mutex *(*xMutexAlloc)(int);
30116 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType);
30211 if( sqlite3GlobalConfig.mutex.xMutexAlloc==checkMutexAlloc ){
30224 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
30225 /* If the xMutexAlloc method has not been set, then the user did not
30251 pTo->xMutexAlloc = pFrom->xMutexAlloc;
30289 assert( sqlite3GlobalConfig.mutex.xMutexAlloc );
30290 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);
30298 assert( sqlite3GlobalConfig.mutex.xMutexAlloc );
30299 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);