Searched refs:sqlite3_step (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/test/
H A Dthread_common.tcl38 while {[set rc [sqlite3_step $::STMT]] eq "SQLITE_ROW"} {
H A Dthreadtest3.c633 while( SQLITE_ROW==sqlite3_step(pStmt) ){
672 while( SQLITE_ROW==sqlite3_step(pStmt) ){
702 while( SQLITE_ROW==sqlite3_step(pStmt) ){
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_schema.c178 while( !pCur->pColumnList || SQLITE_ROW!=sqlite3_step(pCur->pColumnList) ){
181 while( !pCur->pTableList || SQLITE_ROW!=sqlite3_step(pCur->pTableList) ){
185 while( SQLITE_ROW!=sqlite3_step(pCur->pDbList) ){
H A Dlegacy.c70 rc = sqlite3_step(pStmt);
H A Dvacuum.c47 VVA_ONLY( rc = ) sqlite3_step(pStmt);
63 while( SQLITE_ROW==sqlite3_step(pStmt) ){
H A Dtest_server.c241 #define MSG_Step 3 /* sqlite3_step(pStmt) */
313 ** sqlite3_step
433 pMsg->errCode = sqlite3_step(pMsg->pStmt);
H A Dtest_superlock.c75 if( SQLITE_ROW==sqlite3_step(pStmt) ){
H A Dloadext.c230 sqlite3_step,
H A Drecover.c517 rc = sqlite3_step(pStmt);
524 rc = sqlite3_step(pStmt);
550 rc = sqlite3_step(pStmt);
574 rc = sqlite3_step(pStmt);
H A Dtest_func.c303 rc = sqlite3_step(pStmt);
H A Dtest_stat.c377 rc = sqlite3_step(pCsr->pStmt);
H A Dtest_thread.c428 ** 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)) ){
/external/chromium_org/third_party/leveldatabase/src/doc/bench/
H A Ddb_bench_sqlite3.cc527 status = sqlite3_step(begin_trans_stmt);
552 status = sqlite3_step(replace_stmt);
566 status = sqlite3_step(end_trans_stmt);
603 status = sqlite3_step(begin_trans_stmt);
621 while ((status = sqlite3_step(read_stmt)) == SQLITE_ROW) {}
634 status = sqlite3_step(end_trans_stmt);
656 for (int i = 0; i < reads_ && SQLITE_ROW == sqlite3_step(pStmt); i++) {
/external/chromium_org/sql/
H A Dstatement.cc61 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
70 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c239 sqlite3_step(pStmt);
261 if( SQLITE_ROW==sqlite3_step(pStmt) ){
H A Dfts2.c2150 /* Like sqlite3_step(), but convert SQLITE_DONE to SQLITE_OK and
2155 int rc = sqlite3_step(s);
2253 rc = sqlite3_step(s);
2265 /* We expect only one row. We must execute another sqlite3_step()
2267 rc = sqlite3_step(s);
2297 rc = sqlite3_step(s);
2300 /* We expect only one row. We must execute another sqlite3_step()
2302 rc = sqlite3_step(s);
2320 rc = sqlite3_step(s);
2361 rc = sqlite3_step(
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_write.c291 rc = sqlite3_step(pStmt);
339 sqlite3_step(pStmt);
370 sqlite3_step(pStmt);
704 sqlite3_step(pContentInsert);
753 if( SQLITE_ROW==sqlite3_step(pSelect) ){
803 if( SQLITE_ROW==sqlite3_step(pNextIdx) ){
1441 sqlite3_step(pStmt);
1469 sqlite3_step(pStmt);
1738 if( SQLITE_ROW==sqlite3_step(pStmt) ){
1902 if( SQLITE_ROW==sqlite3_step(pStm
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspeedtest16.c84 while( (rc=sqlite3_step(pStmt))==SQLITE_ROW ){ nRow++; }
87 printf("sqlite3_step() returns %d after %d rows in %llu cycles\n",
H A Dspeedtest8inst1.c57 sqlite3_snprintf(1023, zMessage, "sqlite3_step loop: %s", zSql);
60 while( (rc=sqlite3_step(pStmt))==SQLITE_ROW ){ nRow++; }
H A Dspeedtest8.c76 while( (rc=sqlite3_step(pStmt))==SQLITE_ROW ){ nRow++; }
80 printf("sqlite3_step() returns %d after %d rows in %llu cycles\n",
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c625 while( (rc=sqlite3_step(s))!=SQLITE_DONE && rc!=SQLITE_ROW ){
695 /* We expect only one row. We must execute another sqlite3_step()
697 rc = sqlite3_step(s);
740 /* We expect only one row. We must execute another sqlite3_step()
742 rc = sqlite3_step(s);
775 /* We expect only one row. We must execute another sqlite3_step()
777 if( sqlite3_step(s) != SQLITE_DONE ) return SQLITE_ERROR;
1007 rc = sqlite3_step(c->pStmt);
1031 rc = sqlite3_step(c->pStmt);
1058 return sqlite3_step(*ppStm
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c489 rc = sqlite3_step(pRtree->pReadNode);
621 sqlite3_step(p);
1174 if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){
1680 sqlite3_step(pRtree->pWriteRowid);
1690 sqlite3_step(pRtree->pWriteParent);
2314 rc = sqlite3_step(pRtree->pReadParent);
2365 sqlite3_step(pRtree->pDeleteNode);
2372 sqlite3_step(pRtree->pDeleteParent);
2622 sqlite3_step(pRtree->pWriteRowid);
2681 sqlite3_step(pRtre
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteStatement.cpp105 int error = sqlite3_step(m_statement);
107 WTF_LOG(SQLDatabase, "sqlite3_step failed (%i)\nQuery - %s\nError - %s",
/external/sqlite/dist/orig/
H A Dshell.c1035 rc = sqlite3_step(pSelect);
1054 rc = sqlite3_step(pSelect);
1225 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){
1331 while( sqlite3_step(pExplain)==SQLITE_ROW ){
1360 rc = sqlite3_step(pStmt);
1401 rc = sqlite3_step(pStmt);
1409 rc = sqlite3_step(pStmt);
1513 rc = sqlite3_step(pTableInfo);
1518 rc = sqlite3_step(pTableInfo);
2062 while( (rc = sqlite3_step(pQuer
[all...]
/external/sqlite/dist/
H A Dshell.c1040 rc = sqlite3_step(pSelect);
1059 rc = sqlite3_step(pSelect);
1230 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){
1336 while( sqlite3_step(pExplain)==SQLITE_ROW ){
1365 rc = sqlite3_step(pStmt);
1406 rc = sqlite3_step(pStmt);
1414 rc = sqlite3_step(pStmt);
1518 rc = sqlite3_step(pTableInfo);
1523 rc = sqlite3_step(pTableInfo);
2082 while( (rc = sqlite3_step(pQuer
[all...]

Completed in 491 milliseconds

12