Home
last modified time | relevance | path

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

/external/sqlite/dist/orig/
Dshell.c1167 rc = sqlite3_step(pSelect); in run_table_dump_query()
1186 rc = sqlite3_step(pSelect); in run_table_dump_query()
1424 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1531 while( sqlite3_step(pExplain)==SQLITE_ROW ){ in shell_exec()
1551 rc = sqlite3_step(pStmt); in shell_exec()
1592 rc = sqlite3_step(pStmt); in shell_exec()
1600 rc = sqlite3_step(pStmt); in shell_exec()
1709 rc = sqlite3_step(pTableInfo); in dump_callback()
1714 rc = sqlite3_step(pTableInfo); in dump_callback()
2323 while( (rc = sqlite3_step(pQuery))==SQLITE_ROW ){ in tryToCloneData()
[all …]
Dsqlite3ext.h387 #define sqlite3_step sqlite3_api->step macro
Dsqlite3.h3836 SQLITE_API int SQLITE_STDCALL sqlite3_step(sqlite3_stmt*);
Dsqlite3.c4043 SQLITE_API int SQLITE_STDCALL sqlite3_step(sqlite3_stmt*);
69539 SQLITE_API int SQLITE_STDCALL sqlite3_step(sqlite3_stmt *pStmt){
77487 rc = sqlite3_step(p->pStmt);
89747 while( sqlite3_step(pStmt)==SQLITE_ROW ){
89803 while( sqlite3_step(pStmt)==SQLITE_ROW ){
101758 rc = sqlite3_step(pStmt);
102242 #define sqlite3_step sqlite3_api->step
102587 sqlite3_step,
114220 VVA_ONLY( rc = ) sqlite3_step(pStmt);
114236 while( SQLITE_ROW==sqlite3_step(pStmt) ){
[all …]
/external/sqlite/dist/
Dshell.c1173 rc = sqlite3_step(pSelect); in run_table_dump_query()
1192 rc = sqlite3_step(pSelect); in run_table_dump_query()
1430 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1537 while( sqlite3_step(pExplain)==SQLITE_ROW ){ in shell_exec()
1557 rc = sqlite3_step(pStmt); in shell_exec()
1598 rc = sqlite3_step(pStmt); in shell_exec()
1606 rc = sqlite3_step(pStmt); in shell_exec()
1715 rc = sqlite3_step(pTableInfo); in dump_callback()
1720 rc = sqlite3_step(pTableInfo); in dump_callback()
2345 while( (rc = sqlite3_step(pQuery))==SQLITE_ROW ){ in tryToCloneData()
[all …]
Dsqlite3ext.h387 #define sqlite3_step sqlite3_api->step macro
Dsqlite3.h3836 SQLITE_API int SQLITE_STDCALL sqlite3_step(sqlite3_stmt*);
Dsqlite3.c4043 SQLITE_API int SQLITE_STDCALL sqlite3_step(sqlite3_stmt*);
69557 SQLITE_API int SQLITE_STDCALL sqlite3_step(sqlite3_stmt *pStmt){
77505 rc = sqlite3_step(p->pStmt);
89765 while( sqlite3_step(pStmt)==SQLITE_ROW ){
89821 while( sqlite3_step(pStmt)==SQLITE_ROW ){
101776 rc = sqlite3_step(pStmt);
102260 #define sqlite3_step sqlite3_api->step
102605 sqlite3_step,
114238 VVA_ONLY( rc = ) sqlite3_step(pStmt);
114254 while( SQLITE_ROW==sqlite3_step(pStmt) ){
[all …]
/external/sqlite/android/
Dsqlite3_android.cpp390 err = sqlite3_step(statement); in tokenize()
/external/javasqlite/src/main/native/
Dsqlite_jni.c2634 ret = sqlite3_step((sqlite3_stmt *) v->vm); in Java_SQLite_Vm_step()
2721 ret = sqlite3_step((sqlite3_stmt *) v->vm); in Java_SQLite_Vm_step()
3645 ret = sqlite3_step((sqlite3_stmt *) v->vm); in Java_SQLite_Stmt_step()