Searched refs:xMutexAlloc (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.h5412 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5440 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5441 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5453 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.c5965 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5993 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5994 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6006 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
16805 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
16806 /* If the xMutexAlloc method has not been set, then the user did not
16819 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
16822 pTo->xMutexAlloc = pFrom->xMutexAlloc;
16857 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]

Completed in 235 milliseconds