• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/sqlite-3.6.22/

Lines Matching defs:SQLITE_LOCKED

887 #define SQLITE_LOCKED       6   /* A table in the database is locked */
952 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8) )
5924 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
5940 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
5984 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6049 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6063 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6066 ** application receives an SQLITE_LOCKED error, it may call the
6130 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
6143 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
6147 ** that belong to the same connection. If there are, SQLITE_LOCKED is
6157 ** SQLITE_LOCKED.)^
8382 ** tried to do recently failed with an SQLITE_LOCKED error due to locks
8385 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */
37775 ** setSharedCacheTableLock()), or SQLITE_LOCKED if not.
40011 ** requested, return SQLITE_LOCKED.
44486 ** This routine will fail with SQLITE_LOCKED if there are any open
44518 ** This routine will fail with SQLITE_LOCKED if there are any open
45607 ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED.
45610 return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED));
45973 assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED );
56631 rc = SQLITE_LOCKED;
57457 if( (rc&0xFF)==SQLITE_LOCKED ){
57474 ** code will be set to SQLITE_LOCKED.
78211 }else if( rc!=SQLITE_INTERRUPT && rc!=SQLITE_LOCKED ){
78845 ** locked the sqlite3_master table, return SQLITE_LOCKED. If any other error
78865 return (rc==SQLITE_LOCKED) ? SQLITE_LOCKED : SQLITE_SCHEMA;
86379 ** virtual module tables in this case, so return SQLITE_LOCKED.
86382 return SQLITE_LOCKED;
95965 /* SQLITE_LOCKED */ "database table is locked",
97664 ** but has received an SQLITE_LOCKED error because another connection
97671 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
97707 rc = SQLITE_LOCKED; /* Deadlock detected. */
97726 ** associated with connection db. The operation will return SQLITE_LOCKED