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

/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h5223 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5251 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5252 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5264 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.c5766 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5794 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5795 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5807 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
16414 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
16415 /* If the xMutexAlloc method has not been set, then the user did not
16428 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
16431 pTo->xMutexAlloc = pFrom->xMutexAlloc;
16466 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h5965 ** ^(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
H A Dsqlite3.c6080 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6108 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
6109 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6121 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
18403 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
18404 /* If the xMutexAlloc method has not been set, then the user did not
18417 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
18420 pTo->xMutexAlloc = pFrom->xMutexAlloc;
18455 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]
/external/sqlite/dist/
H A Dsqlite3.h5965 ** ^(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
H A Dsqlite3.c6080 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
6108 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
6109 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
6121 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
18403 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
18404 /* If the xMutexAlloc method has not been set, then the user did not
18417 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
18420 pTo->xMutexAlloc = pFrom->xMutexAlloc;
18455 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]

Completed in 475 milliseconds