Home
last modified time | relevance | path

Searched refs:SQLITE_MISUSE (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Modules/_sqlite/
Dutil.c83 case SQLITE_MISUSE: in _pysqlite_seterror()
/third_party/sqlite/include/
Dsqlite3.h466 #define SQLITE_MISUSE 21 /* Library used incorrectly */ macro
/third_party/sqlite/src/
Dsqlite3.c776 #define SQLITE_MISUSE 21 /* Library used incorrectly */ macro
26865 sqlite3_log(SQLITE_MISUSE,
33505 sqlite3_log(SQLITE_MISUSE,
84752 sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement");
84760 sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement");
85462 || (rc&0xff)==SQLITE_BUSY || rc==SQLITE_MISUSE
86076 sqlite3Error(p->db, SQLITE_MISUSE);
86078 sqlite3_log(SQLITE_MISUSE,
145910 sqlite3Error(db, SQLITE_MISUSE);
168143 rc = SQLITE_MISUSE;
[all …]
Dshell.c11142 if( p->bRun ) return SQLITE_MISUSE; in sqlite3_expert_sql()
22218 if( sqlite3_config(-1)==SQLITE_MISUSE ){ in verify_uninitialized()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch91535 +** processing, then these routines return [SQLITE_MISUSE])^ or perhaps
98372 - ** be called automatically instead of throwing the SQLITE_MISUSE error.
98374 - ** since any application that receives an SQLITE_MISUSE is broken by
98378 - ** for version 3.6.23 or earlier do in fact depend on SQLITE_MISUSE
98381 - ** legacy behavior of returning SQLITE_MISUSE for cases where the
98483 + ** be called automatically instead of throwing the SQLITE_MISUSE error.
98485 + ** since any application that receives an SQLITE_MISUSE is broken by
98489 + ** for version 3.6.23 or earlier do in fact depend on SQLITE_MISUSE
98492 + ** legacy behavior of returning SQLITE_MISUSE for cases where the
98567 + if( pVal==0 ) return SQLITE_MISUSE;
[all …]