HomeSort by relevance Sort by last modified time
    Searched refs:sqlite3_step (Results 26 - 48 of 48) sorted by null

12

  /external/chromium_org/third_party/sqlite/src/src/
test_thread.c 428 ** or sqlite3_step()) has just returned SQLITE_LOCKED. The argument is the
477 ** This function is a wrapper around the SQLite function sqlite3_step().
489 while( SQLITE_LOCKED==(rc = sqlite3_step(pStmt)) ){
vdbeblob.c 65 rc = sqlite3_step(p->pStmt);
analyze.c 655 while( sqlite3_step(pStmt)==SQLITE_ROW ){
sqlite3ext.h 332 #define sqlite3_step sqlite3_api->step macro
test4.c 494 p->rc = sqlite3_step(p->pStmt);
sqlite.h.in 298 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
403 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
404 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
    [all...]
vdbeapi.c 339 ** outer sqlite3_step() wrapper procedure.
348 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
360 ** previous sqlite3_step() returned something other than a SQLITE_LOCKED
463 ** This is the top-level implementation of sqlite3_step(). Call
467 int sqlite3_step(sqlite3_stmt *pStmt){ function
1010 ** as if there had been a schema change, on the first sqlite3_step() call
    [all...]
tclsqlite.c     [all...]
test1.c     [all...]
  /external/sqlite/android/
sqlite3_android.cpp 390 err = sqlite3_step(statement);
394 ALOGE(" sqlite3_step error %d", err);
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_expr.c 778 if( SQLITE_ROW==sqlite3_step(pStmt) ){
fts3.c 630 sqlite3_step(pStmt);
    [all...]
  /external/sqlite/dist/orig/
sqlite3ext.h 356 #define sqlite3_step sqlite3_api->step macro
sqlite3.h 303 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
409 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
410 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
    [all...]
sqlite3.c 853 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
63222 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){ function
91329 #define sqlite3_step macro
    [all...]
  /external/sqlite/dist/
sqlite3ext.h 356 #define sqlite3_step sqlite3_api->step macro
sqlite3.h 303 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
409 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
410 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
    [all...]
sqlite3.c 853 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
63250 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){ function
91365 #define sqlite3_step macro
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 303 ** [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 */
    [all...]
sqlite3.c 846 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
60980 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){ function
87021 #define sqlite3_step macro
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
tester.tcl 706 while {[sqlite3_step $vm]=="SQLITE_ROW"} {
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c     [all...]

Completed in 2638 milliseconds

12