Home
last modified time | relevance | path

Searched refs:sqlite3_set_authorizer (Results 1 – 14 of 14) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dshowauth.c101 rc = sqlite3_set_authorizer(db, authCallback, 0); in sqlite3_showauth_init()
/sqlite-3.40.0/src/
H A Dloadext.c38 # define sqlite3_set_authorizer 0 macro
233 sqlite3_set_authorizer,
H A Dauth.c70 int sqlite3_set_authorizer( in sqlite3_set_authorizer() function
H A Dsqlite3ext.h486 #define sqlite3_set_authorizer sqlite3_api->set_authorizer macro
H A Dtclsqlite.c2034 sqlite3_set_authorizer(pDb->db,(sqlite3_auth_cb)auth_callback,pDb); in DbObjCmd()
2036 sqlite3_set_authorizer(pDb->db, 0, 0); in DbObjCmd()
H A Dsqlite.h.in3081 ** parameter to the sqlite3_set_authorizer() interface. ^The second parameter
3121 ** at a time. Each call to sqlite3_set_authorizer overrides the
3141 int sqlite3_set_authorizer(
3150 ** The [sqlite3_set_authorizer | authorizer callback function] must
3153 ** [sqlite3_set_authorizer | authorizer documentation] for additional
3165 ** The [sqlite3_set_authorizer()] interface registers a callback function
3970 ** attack. Developers might also want to use the [sqlite3_set_authorizer()]
9869 ** return value from the [sqlite3_set_authorizer()] callback and that
H A Dshell.c.in5194 sqlite3_set_authorizer(p->db, safeModeAuth, p);
7644 sqlite3_set_authorizer(p->db, shellAuth, p);
7646 sqlite3_set_authorizer(p->db, safeModeAuth, p);
7648 sqlite3_set_authorizer(p->db, 0, 0);
/sqlite-3.40.0/test/
H A Dossfuzz.c171 sqlite3_set_authorizer(cx.db, block_debug_pragmas, 0); in LLVMFuzzerTestOneInput()
H A Dauth2.test12 # focus of this script is testing the sqlite3_set_authorizer() API
H A Duserauth01.test241 # The sqlite3_set_authorizer() callback is modified to take a 7th parameter
H A Dfuzzcheck.c1236 sqlite3_set_authorizer(cx.db, block_troublesome_sql, &btsFlags); in runCombinedDbSqlInput()
H A Dauth.test12 # focus of this script is testing the sqlite3_set_authorizer() API
48 # a database connection at a time. Each call to sqlite3_set_authorizer
/sqlite-3.40.0/ext/userauth/
H A Duser-auth.txt119 The sqlite3_set_authorizer() callback is modified to take a 7th parameter
/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c1870 sqlite3_set_authorizer(pNew->dbv, idxAuthCallback, (void*)pNew); in sqlite3_expert_new()