Home
last modified time | relevance | path

Searched refs:SQLITE_DONE (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Modules/_sqlite/
Dcursor.c545 if (rc != SQLITE_DONE && rc != SQLITE_ROW) { in _pysqlite_query_execute()
564 assert(rc == SQLITE_ROW || rc == SQLITE_DONE); in _pysqlite_query_execute()
620 } else if (rc == SQLITE_DONE && !multiple) { in _pysqlite_query_execute()
746 if (rc != SQLITE_DONE) { in pysqlite_cursor_executescript()
817 if (rc != SQLITE_DONE && rc != SQLITE_ROW) { in pysqlite_cursor_iternext()
Dmodule.c325 ADD_INT(SQLITE_DONE); in add_integer_constants()
Dconnection.c425 if (rc != SQLITE_DONE) { in _pysqlite_connection_begin()
473 if (rc != SQLITE_DONE) { in pysqlite_connection_commit_impl()
523 if (rc != SQLITE_DONE) { in pysqlite_connection_rollback_impl()
/third_party/python/Lib/sqlite3/test/
Dbackup.py78 self.assertEqual(journal[1], sqlite.SQLITE_DONE)
/third_party/elfutils/debuginfod/
Ddebuginfod.cxx994 if (rc != SQLITE_OK && rc != SQLITE_DONE && rc != SQLITE_ROW) in step_ok_done()
2207 if (rc == SQLITE_DONE) break; in handle_buildid()
3800 if (rc == SQLITE_DONE) break; in database_stats_report()
4304 if (rc != SQLITE_OK && rc != SQLITE_DONE && rc != SQLITE_ROW) in main()
/third_party/ltp/tools/sparse/sparse-src/
Dsemind.c496 if (ret != SQLITE_DONE && ret != SQLITE_ROW) in sqlite_run()
/third_party/sqlite/src/
Dshell.c14206 return SQLITE_DONE; in recoverLostAndFound3Step()
14217 return SQLITE_DONE; in recoverLostAndFound3Step()
14365 return SQLITE_DONE; in recoverWriteDataStep()
14582 return SQLITE_DONE; in recoverLostAndFound2Step()
15214 if( SQLITE_DONE==recoverWriteDataStep(p) ){ in recoverStep()
15229 if( SQLITE_DONE==recoverLostAndFound1Step(p) ){ in recoverStep()
15238 if( SQLITE_DONE==recoverLostAndFound2Step(p) ){ in recoverStep()
15248 if( SQLITE_DONE==recoverLostAndFound3Step(p) ){ in recoverStep()
15429 return SQLITE_DONE; in sqlite3_recover_step()
20116 if( rc!=SQLITE_OK && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){ in tryToCloneData()
[all …]
Dsqlite3.c785 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ macro
51997 if( rc!=SQLITE_DONE ){
56938 return SQLITE_DONE;
56953 return SQLITE_DONE;
57001 return SQLITE_DONE;
57686 return SQLITE_DONE;
57695 return SQLITE_DONE;
58219 if( rc==SQLITE_DONE ){
58280 if( rc==SQLITE_DONE ){
58817 assert( rc!=SQLITE_DONE );
[all …]
/third_party/sqlite/include/
Dsqlite3.h475 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ macro
/third_party/chromium/patch/
D0003-ohos-1115.patch94863 + else if(!(rc==SQLITE_OK||rc==SQLITE_DONE)) \
94868 + assert(rc==SQLITE_OK||rc==SQLITE_DONE);
95035 + assert(rc==SQLITE_DONE);
96960 +** routines return [SQLITE_DONE]. ^The return value might be
101341 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
101356 return SQLITE_DONE;
104126 - ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
104237 + ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
104332 + if( sqlite3BtreeEof(pRhs->pCsr) ) rc = SQLITE_DONE;
105203 + rc = SQLITE_DONE;
[all …]