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

/external/webkit/WebKitLibraries/WebCoreSQLite3/
H A Dsqlite3.h4649 ** The remaining seven methods defined by this structure (xMutexAlloc,
4675 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
/external/sqlite/dist/orig/
H A Dsqlite3.h5591 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5619 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5620 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5632 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.c6141 ** ^(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); member in struct:sqlite3_mutex_methods
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(i
[all...]
/external/sqlite/dist/
H A Dsqlite3.h5591 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5619 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5620 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5632 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.c6141 ** ^(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); member in struct:sqlite3_mutex_methods
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(i
[all...]

Completed in 331 milliseconds