Home
last modified time | relevance | path

Searched refs:SQLITE_ROW (Results 1 – 8 of 8) sorted by relevance

/external/webkit/WebCore/platform/sql/
DSQLiteStatement.cpp82 if (error != SQLITE_DONE && error != SQLITE_ROW) { in step()
129 if (step() != SQLITE_ROW) { in returnsAtLeastOneResult()
233 if (prepareAndStep() != SQLITE_ROW) in getColumnName()
244 if (prepareAndStep() != SQLITE_ROW) in getColumnValue()
272 if (prepareAndStep() != SQLITE_ROW) in getColumnText()
283 if (prepareAndStep() != SQLITE_ROW) in getColumnDouble()
294 if (prepareAndStep() != SQLITE_ROW) in getColumnInt()
305 if (prepareAndStep() != SQLITE_ROW) in getColumnInt64()
316 if (!m_statement && prepareAndStep() != SQLITE_ROW) { in getColumnBlobAsVector()
350 if (step() != SQLITE_ROW) { in getColumnBlob()
[all …]
DSQLiteDatabase.cpp42 const int SQLResultRow = SQLITE_ROW;
205 return sql.step() == SQLITE_ROW; in tableExists()
/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()
1805 while( rc==SQLITE_ROW ){ in run_table_dump_query()
1874 if( SQLITE_ROW == rc ){ in shell_exec()
1909 if( SQLITE_ROW == rc ){ in shell_exec()
1917 } while( SQLITE_ROW == rc ); in shell_exec()
1926 } while( rc == SQLITE_ROW ); in shell_exec()
2014 while( rc==SQLITE_ROW ){ in dump_callback()
[all …]
Dsqlite3.h381 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
Dsqlite3.c905 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
48656 rc = SQLITE_ROW;
50913 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){
50936 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
50939 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
50940 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
53578 rc = SQLITE_ROW;
58524 if( rc!=SQLITE_ROW ){
58533 if( rc==SQLITE_ROW ){
65631 while( sqlite3_step(pStmt)==SQLITE_ROW ){
[all …]
Dsqlite3.h.orig381 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
2815 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
2831 ** ^If the SQL statement being executed returns any data, then [SQLITE_ROW]
2924 ** [sqlite3_step()] has returned [SQLITE_ROW] and neither
2928 ** something other than [SQLITE_ROW], the results are undefined.
3102 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
Dsqlite3.c.orig905 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
3339 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3355 ** ^If the SQL statement being executed returns any data, then [SQLITE_ROW]
3448 ** [sqlite3_step()] has returned [SQLITE_ROW] and neither
3452 ** something other than [SQLITE_ROW], the results are undefined.
3626 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
48645 rc = SQLITE_ROW;
50902 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){
50925 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
50928 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
[all …]
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3.h265 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro