Searched refs:sqlite3_busy_handler (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/platform/sql/ |
D | SQLiteDatabase.cpp | 243 sqlite3_busy_handler(m_db, handler, NULL); in setBusyHandler()
|
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
D | sqlite3ext.h | 225 #define sqlite3_busy_handler sqlite3_api->busy_handler macro
|
D | sqlite3.h | 1434 int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*);
|
/external/sqlite/dist/ |
D | sqlite3.h | 1731 SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*);
|
D | sqlite3.h.orig | 1676 ** is the third argument to sqlite3_busy_handler(). ^The second argument to 1728 SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*); 1733 ** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps 1745 ** was defined (using [sqlite3_busy_handler()]) prior to calling 5840 ** the [sqlite3_busy_handler | busy-handler function]
|
D | sqlite3.c | 2278 SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*); 84671 #define sqlite3_busy_handler sqlite3_api->busy_handler 84969 sqlite3_busy_handler, 105731 SQLITE_API int sqlite3_busy_handler( 105778 sqlite3_busy_handler(db, sqliteDefaultBusyCallback, (void*)db); 105780 sqlite3_busy_handler(db, 0, 0);
|
D | sqlite3.c.orig | 2219 ** is the third argument to sqlite3_busy_handler(). ^The second argument to 2271 SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*); 2276 ** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps 2288 ** was defined (using [sqlite3_busy_handler()]) prior to calling 6383 ** the [sqlite3_busy_handler | busy-handler function] 84664 #define sqlite3_busy_handler sqlite3_api->busy_handler 84962 sqlite3_busy_handler, 105718 SQLITE_API int sqlite3_busy_handler( 105765 sqlite3_busy_handler(db, sqliteDefaultBusyCallback, (void*)db); 105767 sqlite3_busy_handler(db, 0, 0);
|
/external/javasqlite/src/main/native/ |
D | sqlite_jni.c | 1331 sqlite3_busy_handler((sqlite3 *) h->sqlite, busyhandler3, h); in Java_SQLite_Database__1busy_1handler() 1340 sqlite3_busy_handler((sqlite3 *) h->sqlite, busyhandler3, h); in Java_SQLite_Database__1busy_1handler()
|