Home | History | Annotate | Download | only in orig

Lines Matching defs:xMutexAlloc

6141 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6169 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
6170 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6182 sqlite3_mutex *(*xMutexAlloc)(int);
17293 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
17294 /* If the xMutexAlloc method has not been set, then the user did not
17307 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
17310 pTo->xMutexAlloc = pFrom->xMutexAlloc;
17345 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);
17353 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);