Home
last modified time | relevance | path

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

/minix3/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dscache.c272 if (ret != SQLITE_ROW) in get_def_name()
370 } while (ret == SQLITE_ROW); in create_cache()
517 if (sqlite3_step(s->scache_name) == SQLITE_ROW) { in scc_resolve()
583 } while (ret == SQLITE_ROW); in scc_initialize()
602 } while (ret == SQLITE_ROW); in scc_initialize()
645 } while (ret == SQLITE_ROW); in scc_destroy()
759 } while (ret == SQLITE_ROW); in scc_store_cred()
778 } while (ret == SQLITE_ROW); in scc_store_cred()
796 } while (ret == SQLITE_ROW); in scc_store_cred()
835 if (sqlite3_step(s->scache) != SQLITE_ROW) { in scc_get_principal()
[all …]
/minix3/crypto/external/bsd/heimdal/dist/lib/hdb/
H A Dhdb-sqlite.c351 if(ret == SQLITE_ROW) { in hdb_sqlite_make_database()
408 if (sqlite_error != SQLITE_ROW) { in hdb_sqlite_fetch_kvno()
546 } else if(ret == SQLITE_ROW) { /* Found a principal */ in hdb_sqlite_store()
723 if(sqlite_error == SQLITE_ROW) { in hdb_sqlite_nextkey()
/minix3/external/bsd/mdocml/dist/
H A Dmansearch.c281 while (SQLITE_ROW == (c = sqlite3_step(s))) { in mansearch()
361 while (SQLITE_ROW == (c = sqlite3_step(s))) { in buildnames()
412 while (SQLITE_ROW == (c = sqlite3_step(s))) { in buildoutput()
/minix3/external/public-domain/sqlite/dist/
H A Dshell.c1016 while( rc==SQLITE_ROW ){ in run_table_dump_query()
1202 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1320 if( SQLITE_ROW == rc ){ in shell_exec()
1354 if( SQLITE_ROW == rc ){ in shell_exec()
1362 } while( SQLITE_ROW == rc ); in shell_exec()
1368 } while( rc == SQLITE_ROW ); in shell_exec()
1472 while( rc==SQLITE_ROW ){ in dump_callback()
1477 if( rc==SQLITE_ROW ){ in dump_callback()
2687 while( sqlite3_step(pStmt)==SQLITE_ROW ){ in do_meta_command()
2718 while( sqlite3_step(pStmt)==SQLITE_ROW ){ in do_meta_command()
H A Dsqlite3.h430 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
H A Dsqlite3.c458 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ macro
62787 rc = SQLITE_ROW;
65191 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){
65218 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
65221 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
65222 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
67724 rc = SQLITE_ROW;
72860 if( rc==SQLITE_ROW ){
72880 if( rc==SQLITE_ROW ){
72894 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
[all …]
/minix3/external/bsd/kyua-cli/dist/utils/sqlite/
H A Dstatement.cpp197 case SQLITE_ROW: in step()
/minix3/lib/lua/sqlite/
H A Dsqlite.c383 { "ROW", SQLITE_ROW },