Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/lib/krb5/
HDscache.c270 if (ret != SQLITE_ROW) in get_def_name()
368 } while (ret == SQLITE_ROW); in create_cache()
515 if (sqlite3_step(s->scache_name) == SQLITE_ROW) { in scc_resolve()
581 } while (ret == SQLITE_ROW); in scc_initialize()
600 } while (ret == SQLITE_ROW); in scc_initialize()
643 } while (ret == SQLITE_ROW); in scc_destroy()
757 } while (ret == SQLITE_ROW); in scc_store_cred()
776 } while (ret == SQLITE_ROW); in scc_store_cred()
794 } while (ret == SQLITE_ROW); in scc_store_cred()
833 if (sqlite3_step(s->scache) != SQLITE_ROW) { in scc_get_principal()
[all …]
/NextBSD/crypto/heimdal/lib/hdb/
HDhdb-sqlite.c349 if(ret == SQLITE_ROW) { in hdb_sqlite_make_database()
406 if (sqlite_error != SQLITE_ROW) { in hdb_sqlite_fetch_kvno()
544 } else if(ret == SQLITE_ROW) { /* Found a principal */ in hdb_sqlite_store()
721 if(sqlite_error == SQLITE_ROW) { in hdb_sqlite_nextkey()
/NextBSD/contrib/sqlite3/
HDshell.c1167 while( rc==SQLITE_ROW ){ in run_table_dump_query()
1425 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1532 while( sqlite3_step(pExplain)==SQLITE_ROW ){ in shell_exec()
1554 if( SQLITE_ROW == rc ){ in shell_exec()
1588 if( SQLITE_ROW == rc ){ in shell_exec()
1596 } while( SQLITE_ROW == rc ); in shell_exec()
1602 } while( rc == SQLITE_ROW ); in shell_exec()
1711 while( rc==SQLITE_ROW ){ in dump_callback()
1716 if( rc==SQLITE_ROW ){ in dump_callback()
2326 while( (rc = sqlite3_step(pQuery))==SQLITE_ROW ){ in tryToCloneData()
[all …]
HDsqlite3.h434 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
HDsqlite3.c648 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
67440 rc = SQLITE_ROW;
70735 if( rc!=SQLITE_ROW ) checkProfileCallback(db, p);
70758 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
70761 assert( (p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE) || p->rc==p->rcApp );
70762 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
73435 rc = SQLITE_ROW;
78830 if( rc==SQLITE_ROW ){
78848 if( rc==SQLITE_ROW ){
78862 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
[all …]
/NextBSD/contrib/mdocml/
HDmansearch.c296 while (SQLITE_ROW == (c = sqlite3_step(s))) { in mansearch()
428 while (SQLITE_ROW == (c = sqlite3_step(s))) { in buildnames()
553 while (SQLITE_ROW == (c = sqlite3_step(s))) { in buildoutput()
HDmandocdb.c1288 while (SQLITE_ROW == (irc = sqlite3_step(stmt))) { in names_check()
2034 if (sqlite3_step(stmts[STMT_SELECT_NAME]) == SQLITE_ROW) { in dbadd_mlink_name()
/NextBSD/contrib/apr-util/dbd/
HDapr_dbd_sqlite3.c118 } else if (ret == SQLITE_ROW) { in dbd_sqlite3_select_internal()
170 } while (ret == SQLITE_ROW || ret == SQLITE_BUSY); in dbd_sqlite3_select_internal()
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDsqlite.c356 if (sqlite_result != SQLITE_DONE && sqlite_result != SQLITE_ROW) in svn_sqlite__step()
367 *got_row = (sqlite_result == SQLITE_ROW); in svn_sqlite__step()
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.h409 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
HDsqlite3.c962 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
59616 rc = SQLITE_ROW;
61965 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){
61992 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
61995 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
61996 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
64680 rc = SQLITE_ROW;
69873 if( rc==SQLITE_ROW ){
69892 if( rc==SQLITE_ROW ){
69906 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
[all …]