Lines Matching refs:SQLITE_LOCKED
930 #define SQLITE_LOCKED 6 /* A table in the database is locked */
998 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
6370 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
6390 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
6434 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6498 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6512 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6515 ** application receives an SQLITE_LOCKED error, it may call the
6579 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
6592 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
6596 ** that belong to the same connection. If there are, SQLITE_LOCKED is
6606 ** SQLITE_LOCKED.)^
9020 ** tried to do recently failed with an SQLITE_LOCKED error due to locks
9023 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */
45577 ** setSharedCacheTableLock()), or SQLITE_LOCKED if not.
47913 ** requested, return SQLITE_LOCKED.
52458 ** This routine will fail with SQLITE_LOCKED if there are any open
52490 ** This routine will fail with SQLITE_LOCKED if there are any open
53295 ** Return SQLITE_LOCKED if this or any other connection has an open
53304 rc = SQLITE_LOCKED;
53692 ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED.
53695 return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED));
54084 assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED );
64981 rc = SQLITE_LOCKED;
65944 if( (rc&0xFF)==SQLITE_LOCKED ){
65961 ** code will be set to SQLITE_LOCKED.
87073 }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED ){
87693 ** locked the sqlite3_master table, return SQLITE_LOCKED. If any other error
95388 ** virtual module tables in this case, so return SQLITE_LOCKED.
95391 return SQLITE_LOCKED;
105620 /* SQLITE_LOCKED */ "database table is locked",
106186 ** function returns SQLITE_LOCKED and a checkpoint is not attempted. If
107532 ** but has received an SQLITE_LOCKED error because another connection
107539 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
107576 rc = SQLITE_LOCKED; /* Deadlock detected. */
107595 ** associated with connection db. The operation will return SQLITE_LOCKED
114919 SQLITE_LOCKED or