Home
last modified time | relevance | path

Searched refs:sqlite3_step (Results 1 – 13 of 13) sorted by relevance

/external/chromium/app/sql/
Dstatement.cc45 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE; in Run()
51 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW; in Step()
/external/chromium/chrome/common/
Dsqlite_utils.cc120 return sqlite3_step(statement.get()) == SQLITE_ROW; in DoesSqliteTableExist()
293 int status = sqlite3_step(stmt_); in step()
/external/sqlite/dist/
Dshell.c944 rc = sqlite3_step(pSelect); in run_table_dump_query()
951 rc = sqlite3_step(pSelect); in run_table_dump_query()
1104 rc = sqlite3_step(pStmt); in shell_exec()
1141 rc = sqlite3_step(pStmt); in shell_exec()
1149 rc = sqlite3_step(pStmt); in shell_exec()
1247 rc = sqlite3_step(pTableInfo); in dump_callback()
1252 rc = sqlite3_step(pTableInfo); in dump_callback()
1767 sqlite3_step(pStmt); in do_meta_command()
Dsqlite3.h.orig303 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
408 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
409 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
1538 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
1737 ** the handler returns 0 which causes [sqlite3_step()] to return
2114 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2118 ** statement might be re-prepared during [sqlite3_step()] due to a
2120 ** correct authorizer callback remains in place during the [sqlite3_step()].
2124 ** performed during statement evaluation in [sqlite3_step()], unless
2125 ** as stated in the previous paragraph, sqlite3_step() invokes
[all …]
Dshell.c.orig939 rc = sqlite3_step(pSelect);
946 rc = sqlite3_step(pSelect);
1099 rc = sqlite3_step(pStmt);
1136 rc = sqlite3_step(pStmt);
1144 rc = sqlite3_step(pStmt);
1242 rc = sqlite3_step(pTableInfo);
1247 rc = sqlite3_step(pTableInfo);
1748 sqlite3_step(pStmt);
Dsqlite3.h3077 SQLITE_API int sqlite3_step(sqlite3_stmt*);
Dsqlite3.c3624 SQLITE_API int sqlite3_step(sqlite3_stmt*);
58921 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){
66564 rc = sqlite3_step(p->pStmt);
74002 while( sqlite3_step(pStmt)==SQLITE_ROW ){
84330 rc = sqlite3_step(pStmt);
84759 #define sqlite3_step sqlite3_api->step
85054 sqlite3_step,
94286 VVA_ONLY( rc = ) sqlite3_step(pStmt);
94302 while( SQLITE_ROW==sqlite3_step(pStmt) ){
109015 sqlite3_step(pStmt);
[all …]
Dsqlite3.c.orig846 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
951 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
952 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
2081 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2280 ** the handler returns 0 which causes [sqlite3_step()] to return
2657 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2661 ** statement might be re-prepared during [sqlite3_step()] due to a
2663 ** correct authorizer callback remains in place during the [sqlite3_step()].
2667 ** performed during statement evaluation in [sqlite3_step()], unless
2668 ** as stated in the previous paragraph, sqlite3_step() invokes
[all …]
/external/webkit/Source/WebCore/platform/sql/
DSQLiteStatement.cpp107 int error = sqlite3_step(m_statement); in step()
/external/sqlite/android/
Dsqlite3_android.cpp438 err = sqlite3_step(statement); in tokenize()
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3ext.h313 #define sqlite3_step sqlite3_api->step macro
Dsqlite3.h2767 int sqlite3_step(sqlite3_stmt*);
/external/javasqlite/src/main/native/
Dsqlite_jni.c2635 ret = sqlite3_step((sqlite3_stmt *) v->vm); in Java_SQLite_Vm_step()
2722 ret = sqlite3_step((sqlite3_stmt *) v->vm); in Java_SQLite_Vm_step()
3646 ret = sqlite3_step((sqlite3_stmt *) v->vm); in Java_SQLite_Stmt_step()