OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sqlite3_step
(Results
1 - 25
of
38
) sorted by null
1
2
/external/chromium_org/third_party/sqlite/src/test/
thread_common.tcl
38
while {[set rc [
sqlite3_step
$::STMT]] eq "SQLITE_ROW"} {
threadtest3.c
633
while( SQLITE_ROW==
sqlite3_step
(pStmt) ){
672
while( SQLITE_ROW==
sqlite3_step
(pStmt) ){
702
while( SQLITE_ROW==
sqlite3_step
(pStmt) ){
[
all
...]
/external/chromium_org/third_party/sqlite/src/src/
test_schema.c
178
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) ){
legacy.c
70
rc =
sqlite3_step
(pStmt);
vacuum.c
47
VVA_ONLY( rc = )
sqlite3_step
(pStmt);
63
while( SQLITE_ROW==
sqlite3_step
(pStmt) ){
test_server.c
241
#define MSG_Step 3 /*
sqlite3_step
(pStmt) */
313
**
sqlite3_step
433
pMsg->errCode =
sqlite3_step
(pMsg->pStmt);
test_superlock.c
75
if( SQLITE_ROW==
sqlite3_step
(pStmt) ){
loadext.c
230
sqlite3_step
,
recover.c
517
rc =
sqlite3_step
(pStmt);
524
rc =
sqlite3_step
(pStmt);
550
rc =
sqlite3_step
(pStmt);
574
rc =
sqlite3_step
(pStmt);
[
all
...]
test_func.c
303
rc =
sqlite3_step
(pStmt);
test_stat.c
377
rc =
sqlite3_step
(pCsr->pStmt);
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);
/external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_sqlite3.cc
527
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/
statement.cc
61
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/
fts2_tokenizer.c
239
sqlite3_step
(pStmt);
261
if( SQLITE_ROW==
sqlite3_step
(pStmt) ){
fts2.c
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_write.c
291
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) ){
[
all
...]
/external/chromium_org/third_party/sqlite/src/tool/
speedtest16.c
84
while( (rc=
sqlite3_step
(pStmt))==SQLITE_ROW ){ nRow++; }
87
printf("
sqlite3_step
() returns %d after %d rows in %llu cycles\n",
speedtest8inst1.c
57
sqlite3_snprintf(1023, zMessage, "
sqlite3_step
loop: %s", zSql);
60
while( (rc=
sqlite3_step
(pStmt))==SQLITE_ROW ){ nRow++; }
speedtest8.c
76
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/
fulltext.c
625
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
(*ppStmt); /* TODO(adamd): handle schema error *
[
all
...]
fts1.c
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c
489
rc =
sqlite3_step
(pRtree->pReadNode);
621
sqlite3_step
(p);
1174
if(
sqlite3_step
(pRtree->pReadRowid)==SQLITE_ROW )
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteStatement.cpp
99
int error =
sqlite3_step
(m_statement);
101
WTF_LOG(SQLDatabase, "
sqlite3_step
failed (%i)\nQuery - %s\nError - %s",
Completed in 95 milliseconds
1
2