Home
last modified time | relevance | path

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

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h493 #define sqlite3_set_authorizer sqlite3_api->set_authorizer macro
H A Dsqlite3.h3171 ** parameter to the sqlite3_set_authorizer() interface. ^The second parameter
3211 ** at a time. Each call to sqlite3_set_authorizer overrides the
3231 SQLITE_API int sqlite3_set_authorizer(
3240 ** The [sqlite3_set_authorizer | authorizer callback function] must
3243 ** [sqlite3_set_authorizer | authorizer documentation] for additional
3255 ** The [sqlite3_set_authorizer()] interface registers a callback function
4077 ** attack. Developers might also want to use the [sqlite3_set_authorizer()]
10179 ** return value from the [sqlite3_set_authorizer()] callback and that
H A Dshell.c13887 sqlite3_set_authorizer(pNew->dbv, idxAuthCallback, (void*)pNew); in sqlite3_expert_new()
23574 sqlite3_set_authorizer(p->db, safeModeAuth, p); in open_db()
26139 sqlite3_set_authorizer(p->db, shellAuth, p); in do_meta_command()
26141 sqlite3_set_authorizer(p->db, safeModeAuth, p); in do_meta_command()
26143 sqlite3_set_authorizer(p->db, 0, 0); in do_meta_command()
H A Dsqlite3.c3484 ** parameter to the sqlite3_set_authorizer() interface. ^The second parameter
3524 ** at a time. Each call to sqlite3_set_authorizer overrides the
3544 SQLITE_API int sqlite3_set_authorizer(
3553 ** The [sqlite3_set_authorizer | authorizer callback function] must
3556 ** [sqlite3_set_authorizer | authorizer documentation] for additional
3568 ** The [sqlite3_set_authorizer()] interface registers a callback function
4390 ** attack. Developers might also want to use the [sqlite3_set_authorizer()]
10492 ** return value from the [sqlite3_set_authorizer()] callback and that
15242 ** 2. The sqlite3_set_authorizer() callback uses the LEGACY name
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2058 sqlite3_set_authorizer(pDb->db,(sqlite3_auth_cb)auth_callback,pDb); in DbObjCmd()
2060 sqlite3_set_authorizer(pDb->db, 0, 0); in DbObjCmd()