Home
last modified time | relevance | path

Searched refs:SQLITE_DONE (Results 1 – 11 of 11) 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/mindspore/mindspore/ccsrc/minddata/mindrecord/io/
Dshard_index_generator.cc218 if (sqlite3_step(stmt) != SQLITE_DONE) { in CreateShardNameTable()
355 if (sqlite3_step(stmt) != SQLITE_DONE) { in BindParameterExecuteSQL()
Dshard_reader.cc724 while (rc != SQLITE_DONE) { in QueryWithCriteria()
/third_party/ltp/tools/sparse/sparse-src/
Dsemind.c496 if (ret != SQLITE_DONE && ret != SQLITE_ROW) in sqlite_run()
/third_party/sqlite/src/
Dsqlite3.c785 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ macro
49452 if( rc!=SQLITE_DONE ){
54359 return SQLITE_DONE;
54374 return SQLITE_DONE;
54422 return SQLITE_DONE;
55107 return SQLITE_DONE;
55116 return SQLITE_DONE;
55639 if( rc==SQLITE_DONE ){
55697 if( rc==SQLITE_DONE ){
56234 assert( rc!=SQLITE_DONE );
[all …]
Dshell.c16358 if( rc!=SQLITE_OK && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){ in tryToCloneData()
16369 if( rc==SQLITE_DONE ) break; in tryToCloneData()
16432 if( rc!=SQLITE_DONE ){ in tryToCloneSchema()
18743 if( rc==SQLITE_DONE ){ in do_meta_command()
20433 if( rc==SQLITE_DONE ){ in do_meta_command()
/third_party/sqlite/include/
Dsqlite3.h475 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ macro
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch89460 + else if(!(rc==SQLITE_OK||rc==SQLITE_DONE)) \
89465 + assert(rc==SQLITE_OK||rc==SQLITE_DONE);
89632 + assert(rc==SQLITE_DONE);
91557 +** routines return [SQLITE_DONE]. ^The return value might be
95705 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
95720 return SQLITE_DONE;
98370 - ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
98481 + ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
98576 + if( sqlite3BtreeEof(pRhs->pCsr) ) rc = SQLITE_DONE;
99447 + rc = SQLITE_DONE;
[all …]