Searched refs:SQLITE_LOCKED (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/Heimdal-323.92.1/lib/hdb/
H A Dhdb-sqlite.c137 (ret == SQLITE_LOCKED))) {
175 (ret == SQLITE_LOCKED))) {
233 (ret == SQLITE_LOCKED))) {
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A DSecDb.c323 assert(rc == SQLITE_LOCKED || rc == SQLITE_OK);
371 if (s3e == SQLITE_LOCKED) { // Optionally check for extended code being SQLITE_LOCKED_SHAREDCACHE
377 if (s3e == SQLITE_LOCKED || s3e == SQLITE_BUSY) {
379 while (s3e == SQLITE_LOCKED || s3e == SQLITE_BUSY) {
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A DSecDb.c323 assert(rc == SQLITE_LOCKED || rc == SQLITE_OK);
371 if (s3e == SQLITE_LOCKED) { // Optionally check for extended code being SQLITE_LOCKED_SHAREDCACHE
377 if (s3e == SQLITE_LOCKED || s3e == SQLITE_BUSY) {
379 while (s3e == SQLITE_LOCKED || s3e == SQLITE_BUSY) {
/macosx-10.9.5/Security-55471.14.18/authd/
H A Dauthdb.c323 // rc = SQLITE_LOCKED;
335 return SQLITE_BUSY == rc || SQLITE_LOCKED == rc;
473 if (rc == SQLITE_LOCKED || rc == SQLITE_BUSY) {
480 if (rc == SQLITE_LOCKED || rc == SQLITE_BUSY) {
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.h388 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
458 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
6146 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
6166 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
6210 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6275 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6289 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6292 ** application receives an SQLITE_LOCKED error, it may call the
6356 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
6369 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]
H A Dsqlite3.c941 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
1011 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
6699 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
6719 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
6763 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6828 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6842 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6845 ** application receives an SQLITE_LOCKED error, it may call the
6909 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
6922 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]

Completed in 643 milliseconds