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

/external/sqlite/dist/orig/
H A Dsqlite3.h6165 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6193 ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory
6194 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6206 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.c6372 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6400 ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory
6401 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6413 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
19139 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
19140 /* If the xMutexAlloc method has not been set, then the user did not
19153 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
19156 pTo->xMutexAlloc = pFrom->xMutexAlloc;
19192 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]
/external/sqlite/dist/
H A Dsqlite3.h6165 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6193 ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory
6194 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6206 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.c6372 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6400 ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory
6401 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6413 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
19139 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
19140 /* If the xMutexAlloc method has not been set, then the user did not
19153 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
19156 pTo->xMutexAlloc = pFrom->xMutexAlloc;
19192 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]

Completed in 305 milliseconds