Home
last modified time | relevance | path

Searched refs:SQLITE_BUSY (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3.h243 #define SQLITE_BUSY 5 /* The database file is locked */ macro
/external/sqlite/dist/
Dsqlite3.h359 #define SQLITE_BUSY 5 /* The database file is locked */ macro
Dshell.c2828 || rc==SQLITE_BUSY ){ in do_meta_command()
2829 if( rc==SQLITE_BUSY ){ in do_meta_command()
2837 }else if( rc==SQLITE_BUSY || rc==SQLITE_LOCKED ){ in do_meta_command()
Dsqlite3.h.orig251 ** SQLITE_BUSY.
359 #define SQLITE_BUSY 5 /* The database file is locked */
1509 ** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors
1515 ** ^If the busy callback is NULL, then [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED]
1524 ** access the database and [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED] is returned.
1530 ** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY]
1539 ** SQLite returns [SQLITE_BUSY] for the first process, hoping that this
1545 ** ^The [SQLITE_BUSY] error is converted to [SQLITE_IOERR_BLOCKED]
1553 ** code is promoted from the relatively benign [SQLITE_BUSY] to
1582 ** [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED].
[all …]
Dsqlite3.c883 #define SQLITE_BUSY 5 /* The database file is locked */ macro
14959 rc = SQLITE_BUSY; in os2MutexTry()
15260 rc = SQLITE_BUSY; in pthreadMutexTry()
15271 rc = SQLITE_BUSY; in pthreadMutexTry()
15555 int rc = SQLITE_BUSY; in winMutexTry()
20577 rc = SQLITE_BUSY;
21457 #define IS_LOCK_ERROR(x) ((x != SQLITE_OK) && (x != SQLITE_BUSY))
21914 return SQLITE_BUSY;
21922 return SQLITE_BUSY;
22846 rc = SQLITE_BUSY;
[all …]
Dsqlite3.c.orig775 ** SQLITE_BUSY.
883 #define SQLITE_BUSY 5 /* The database file is locked */
2033 ** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors
2039 ** ^If the busy callback is NULL, then [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED]
2048 ** access the database and [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED] is returned.
2054 ** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY]
2063 ** SQLite returns [SQLITE_BUSY] for the first process, hoping that this
2069 ** ^The [SQLITE_BUSY] error is converted to [SQLITE_IOERR_BLOCKED]
2077 ** code is promoted from the relatively benign [SQLITE_BUSY] to
2106 ** [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED].
[all …]