Lines Matching defs:SQLITE_LOCKED

978 #define SQLITE_LOCKED       6   /* A table in the database is locked */
1052 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
7185 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
7205 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
7249 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
7314 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
7328 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
7331 ** application receives an SQLITE_LOCKED error, it may call the
7395 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
7408 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
7412 ** that belong to the same connection. If there are, SQLITE_LOCKED is
7422 ** SQLITE_LOCKED.)^
10132 ** tried to do recently failed with an SQLITE_LOCKED error due to locks
10135 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */
49785 ** setSharedCacheTableLock()), or SQLITE_LOCKED if not.
52228 ** requested, return SQLITE_LOCKED.
56943 ** This routine will fail with SQLITE_LOCKED if there are any open
56975 ** This routine will fail with SQLITE_LOCKED if there are any open
57806 ** Return SQLITE_LOCKED if this or any other connection has an open
57817 rc = SQLITE_LOCKED;
58236 ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED.
58239 return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED));
58700 assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED );
63554 ** previous sqlite3_step() returned something other than a SQLITE_LOCKED
63558 if( p->rc==SQLITE_BUSY || p->rc==SQLITE_LOCKED ){
70160 rc = SQLITE_LOCKED;
71129 if( (rc&0xFF)==SQLITE_LOCKED ){
71146 ** code will be set to SQLITE_LOCKED.
95297 }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED ){
95924 ** locked the sqlite3_master table, return SQLITE_LOCKED. If any other error
104140 ** virtual module tables in this case, so return SQLITE_LOCKED.
104143 return SQLITE_LOCKED;
115848 case SQLITE_LOCKED: zName = "SQLITE_LOCKED"; break;
115945 /* SQLITE_LOCKED */ "database table is locked",
116544 ** function returns SQLITE_LOCKED and a checkpoint is not attempted. If
118249 ** but has received an SQLITE_LOCKED error because another connection
118256 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
118293 rc = SQLITE_LOCKED; /* Deadlock detected. */
118312 ** associated with connection db. The operation will return SQLITE_LOCKED
129129 ** attempting to commit those writes might return SQLITE_LOCKED or