Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:SQLITE_LOCKED

930 #define SQLITE_LOCKED       6   /* A table in the database is locked */
998 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
6484 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
6504 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
6548 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6612 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6626 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6629 ** application receives an SQLITE_LOCKED error, it may call the
6693 SQLITE_LOCKED is returned and no
6706 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
6710 ** that belong to the same connection. If there are, SQLITE_LOCKED is
6720 ** SQLITE_LOCKED.)^
9242 ** tried to do recently failed with an SQLITE_LOCKED error due to locks
9245 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */
47339 ** setSharedCacheTableLock()), or SQLITE_LOCKED if not.
49670 ** requested, return SQLITE_LOCKED.
54221 ** This routine will fail with SQLITE_LOCKED if there are any open
54253 ** This routine will fail with SQLITE_LOCKED if there are any open
55058 ** Return SQLITE_LOCKED if this or any other connection has an open
55069 rc = SQLITE_LOCKED;
55468 ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED.
55471 return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED));
55893 assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED );
60694 ** previous sqlite3_step() returned something other than a SQLITE_LOCKED
60698 if( p->rc==SQLITE_BUSY || p->rc==SQLITE_LOCKED ){
66923 rc = SQLITE_LOCKED;
67878 if( (rc&0xFF)==SQLITE_LOCKED ){
67895 ** code will be set to SQLITE_LOCKED.
89157 }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED ){
89775 ** locked the sqlite3_master table, return SQLITE_LOCKED. If any other error
97524 ** virtual module tables in this case, so return SQLITE_LOCKED.
97527 return SQLITE_LOCKED;
108094 /* SQLITE_LOCKED */ "database table is locked",
108684 ** function returns SQLITE_LOCKED and a checkpoint is not attempted. If
110047 ** but has received an SQLITE_LOCKED error because another connection
110054 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
110091 rc = SQLITE_LOCKED; /* Deadlock detected. */
110110 ** associated with connection db. The operation will return SQLITE_LOCKED
120270 ** attempting to commit those writes might return SQLITE_LOCKED or