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

/freebsd-10.2-release/contrib/sqlite3/
H A Dsqlite3.h5806 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5834 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5835 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5847 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.c6377 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6405 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
6406 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6418 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
17739 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
17740 /* If the xMutexAlloc method has not been set, then the user did not
17753 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
17756 pTo->xMutexAlloc = pFrom->xMutexAlloc;
17791 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]
/freebsd-10.2-release/crypto/heimdal/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 698 milliseconds