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

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/minidlna/
H A Dsql.c94 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
97 SQLITE_LOCKED does not, so sleep */
98 if (result == SQLITE_LOCKED)
153 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
156 SQLITE_LOCKED does not, so sleep */
157 if (result == SQLITE_LOCKED)
219 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
223 * SQLITE_LOCKED does not, so sleep */
224 if (result == SQLITE_LOCKED)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/minidlna/
H A Dsql.c94 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
97 SQLITE_LOCKED does not, so sleep */
98 if (result == SQLITE_LOCKED)
153 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
156 SQLITE_LOCKED does not, so sleep */
157 if (result == SQLITE_LOCKED)
219 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
223 * SQLITE_LOCKED does not, so sleep */
224 if (result == SQLITE_LOCKED)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/minidlna/
H A Dsql.c94 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
97 SQLITE_LOCKED does not, so sleep */
98 if (result == SQLITE_LOCKED)
153 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
156 SQLITE_LOCKED does not, so sleep */
157 if (result == SQLITE_LOCKED)
219 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
223 * SQLITE_LOCKED does not, so sleep */
224 if (result == SQLITE_LOCKED)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lighttpd-1.4.39/src/
H A Dsql.c103 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
106 SQLITE_LOCKED does not, so sleep */
107 if (result == SQLITE_LOCKED)
169 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
173 * SQLITE_LOCKED does not, so sleep */
174 if (result == SQLITE_LOCKED)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lighttpd-1.4.39/src/
H A Dsql.c103 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
106 SQLITE_LOCKED does not, so sleep */
107 if (result == SQLITE_LOCKED)
169 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
173 * SQLITE_LOCKED does not, so sleep */
174 if (result == SQLITE_LOCKED)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/src/
H A Dsql.c103 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
106 SQLITE_LOCKED does not, so sleep */
107 if (result == SQLITE_LOCKED)
169 ((result = sqlite3_step(stmt)) == SQLITE_BUSY || result == SQLITE_LOCKED) && counter < 2;
173 * SQLITE_LOCKED does not, so sleep */
174 if (result == SQLITE_LOCKED)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/db_sql/
H A Dutils.c65 case SQLITE_LOCKED: z = "database table is locked"; break;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/db_sql/
H A Dutils.c65 case SQLITE_LOCKED: z = "database table is locked"; break;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/db_sql/
H A Dutils.c65 case SQLITE_LOCKED: z = "database table is locked"; break;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/sqlite/
H A Dsqlite3.h387 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
455 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
5590 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
5610 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
5654 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
5718 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
5732 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
5735 ** application receives an SQLITE_LOCKED error, it may call the
5799 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
5812 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]
H A Dsqlite3.c924 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
992 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
6127 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
6147 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
6191 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6255 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6269 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6272 ** application receives an SQLITE_LOCKED error, it may call the
6336 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
6349 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/sqlite/
H A Dsqlite3.h387 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
455 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
5590 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
5610 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
5654 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
5718 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
5732 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
5735 ** application receives an SQLITE_LOCKED error, it may call the
5799 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
5812 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]
H A Dsqlite3.c924 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
992 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
6127 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
6147 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
6191 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6255 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6269 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6272 ** application receives an SQLITE_LOCKED error, it may call the
6336 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
6349 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/sqlite/
H A Dsqlite3.h387 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
455 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
5590 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
5610 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
5654 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
5718 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
5732 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
5735 ** application receives an SQLITE_LOCKED error, it may call the
5799 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
5812 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]
H A Dsqlite3.c924 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
992 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
6127 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
6147 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
6191 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
6255 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
6269 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
6272 ** application receives an SQLITE_LOCKED error, it may call the
6336 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
6349 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, i
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/db_sql/sqlite/
H A Dsqlite3.h379 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/db_sql/sqlite/
H A Dsqlite3.h379 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/db_sql/sqlite/
H A Dsqlite3.h379 #define SQLITE_LOCKED 6 /* A table in the database is locked */ macro

Completed in 1200 milliseconds