Home
last modified time | relevance | path

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

/external/sqlite/dist/
Dshell.c450 while( !pCur->pColumnList || SQLITE_ROW!=sqlite3_step(pCur->pColumnList) ){ in schemaNext()
453 while( !pCur->pTableList || SQLITE_ROW!=sqlite3_step(pCur->pTableList) ){ in schemaNext()
457 while( SQLITE_ROW!=sqlite3_step(pCur->pDbList) ){ in schemaNext()
744 while( SQLITE_ROW==sqlite3_step(pStmt) ){ in detectSchemaProblem()
1804 rc = sqlite3_step(pSelect); in run_table_dump_query()
1811 rc = sqlite3_step(pSelect); in run_table_dump_query()
1872 rc = sqlite3_step(pStmt); in shell_exec()
1914 rc = sqlite3_step(pStmt); in shell_exec()
1925 rc = sqlite3_step(pStmt); in shell_exec()
2013 rc = sqlite3_step(pTableInfo); in dump_callback()
[all …]
Dsqlite3.h.orig276 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
381 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
382 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
1382 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
1581 ** the handler returns 0 which causes [sqlite3_step()] to return
1953 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
1957 ** statement might be re-prepared during [sqlite3_step()] due to a
1959 ** correct authorizer callback remains in place during the [sqlite3_step()].
1963 ** performed during statement evaluation in [sqlite3_step()], unless
1964 ** as stated in the previous paragraph, sqlite3_step() invokes
[all …]
Dsqlite3.h2864 SQLITE_API int sqlite3_step(sqlite3_stmt*);
Dsqlite3.c3388 SQLITE_API int sqlite3_step(sqlite3_stmt*);
50955 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){
58523 rc = sqlite3_step((sqlite3_stmt *)v);
65631 while( sqlite3_step(pStmt)==SQLITE_ROW ){
75882 rc = sqlite3_step(pStmt);
76290 #define sqlite3_step sqlite3_api->step
76564 sqlite3_step,
85530 VVA_ONLY( rc = ) sqlite3_step(pStmt);
85546 while( SQLITE_ROW==sqlite3_step(pStmt) ){
99545 if( SQLITE_ROW==sqlite3_step(pCsr->pStmt) ){
[all …]
Dsqlite3.c.orig800 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
905 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
906 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
1906 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2105 ** the handler returns 0 which causes [sqlite3_step()] to return
2477 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2481 ** statement might be re-prepared during [sqlite3_step()] due to a
2483 ** correct authorizer callback remains in place during the [sqlite3_step()].
2487 ** performed during statement evaluation in [sqlite3_step()], unless
2488 ** as stated in the previous paragraph, sqlite3_step() invokes
[all …]
/external/webkit/WebCore/platform/sql/
DSQLiteStatement.cpp81 int error = sqlite3_step(m_statement); in step()
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3.h1371 int sqlite3_step(sqlite3_stmt*);
Dsqlite3ext.h260 #define sqlite3_step sqlite3_api->step macro
/external/sqlite/android/
Dsqlite3_android.cpp400 err = sqlite3_step(statement); in tokenize()