Home
last modified time | relevance | path

Searched refs:sqlite3_step (Results 1 – 10 of 10) sorted by relevance

/minix3/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dscache.c271 ret = sqlite3_step(stmt); in get_def_name()
369 ret = sqlite3_step(s->icache); in create_cache()
517 if (sqlite3_step(s->scache_name) == SQLITE_ROW) { in scc_resolve()
582 ret = sqlite3_step(s->dcred); in scc_initialize()
601 ret = sqlite3_step(s->ucachep); in scc_initialize()
644 ret = sqlite3_step(s->dcache); in scc_destroy()
758 ret = sqlite3_step(s->icred); in scc_store_cred()
777 ret = sqlite3_step(s->iprincipal); in scc_store_cred()
795 ret = sqlite3_step(s->iprincipal); in scc_store_cred()
835 if (sqlite3_step(s->scache) != SQLITE_ROW) { in scc_get_principal()
[all …]
/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()
H A Dmandocdb.c67 if (SQLITE_DONE != sqlite3_step((_s))) \
/minix3/external/public-domain/sqlite/dist/
H A Dshell.c1014 rc = sqlite3_step(pSelect); in run_table_dump_query()
1033 rc = sqlite3_step(pSelect); in run_table_dump_query()
1202 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare()
1318 rc = sqlite3_step(pStmt); in shell_exec()
1359 rc = sqlite3_step(pStmt); in shell_exec()
1367 rc = sqlite3_step(pStmt); in shell_exec()
1471 rc = sqlite3_step(pTableInfo); in dump_callback()
1476 rc = sqlite3_step(pTableInfo); in dump_callback()
2265 sqlite3_step(pStmt); in do_meta_command()
2687 while( sqlite3_step(pStmt)==SQLITE_ROW ){ in do_meta_command()
[all …]
H A Dsqlite3ext.h370 #define sqlite3_step sqlite3_api->step macro
H A Dsqlite3.h3672 SQLITE_API int sqlite3_step(sqlite3_stmt*);
H A Dsqlite3.c3700 SQLITE_API int sqlite3_step(sqlite3_stmt*);
65237 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){
72859 rc = sqlite3_step(p->pStmt);
83114 while( sqlite3_step(pStmt)==SQLITE_ROW ){
83167 while( sqlite3_step(pStmt)==SQLITE_ROW ){
94982 rc = sqlite3_step(pStmt);
95446 #define sqlite3_step sqlite3_api->step
95779 sqlite3_step,
106984 VVA_ONLY( rc = ) sqlite3_step(pStmt);
107000 while( SQLITE_ROW==sqlite3_step(pStmt) ){
[all …]
/minix3/crypto/external/bsd/heimdal/dist/lib/hdb/
H A Dhdb-sqlite.c232 ret = sqlite3_step(stmt); in hdb_sqlite_step()
238 ret = sqlite3_step(stmt); in hdb_sqlite_step()
/minix3/external/bsd/kyua-cli/dist/utils/sqlite/
H A Dstatement.cpp192 const int error = ::sqlite3_step(_pimpl->stmt); in step()
/minix3/lib/lua/sqlite/
H A Dsqlite.c264 lua_pushinteger(L, sqlite3_step(*stmt)); in stmt_step()