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/
H A Dsqlite3.h5139 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5167 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5168 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5180 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
H A Dsqlite3.h.orig5136 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5164 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5165 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5177 sqlite3_mutex *(*xMutexAlloc)(int);
H A Dsqlite3.c.orig5679 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5707 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5708 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5720 sqlite3_mutex *(*xMutexAlloc)(int);
16166 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
16167 /* If the xMutexAlloc method has not been set, then the user did not
16180 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
16183 pTo->xMutexAlloc = pFrom->xMutexAlloc;
16218 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]
H A Dsqlite3.c5686 ** ^(The remaining seven methods defined by this structure (xMutexAlloc,
5714 ** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
5715 ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
5727 sqlite3_mutex *(*xMutexAlloc)(int); member in struct:sqlite3_mutex_methods
16173 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){
16174 /* If the xMutexAlloc method has not been set, then the user did not
16187 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
16190 pTo->xMutexAlloc = pFrom->xMutexAlloc;
16225 return sqlite3GlobalConfig.mutex.xMutexAlloc(i
[all...]

Completed in 260 milliseconds