Searched refs:sqlite3_set_authorizer (Results 1 - 6 of 6) sorted by relevance
/third_party/sqlite/include/ |
H A D | sqlite3ext.h | 492 #define sqlite3_set_authorizer sqlite3_api->set_authorizer macro
|
H A D | sqlite3.h | 3088 ** parameter to the sqlite3_set_authorizer() interface. ^The second parameter 3128 ** at a time. Each call to sqlite3_set_authorizer overrides the 3148 SQLITE_API int sqlite3_set_authorizer( 3164 ** The [sqlite3_set_authorizer | authorizer callback function] must 3167 ** [sqlite3_set_authorizer | authorizer documentation] for additional 3179 ** The [sqlite3_set_authorizer()] interface registers a callback function 3984 ** attack. Developers might also want to use the [sqlite3_set_authorizer()] 9921 ** return value from the [sqlite3_set_authorizer()] callback and that
|
/third_party/python/Modules/_sqlite/ |
H A D | connection.c | 1400 rc = sqlite3_set_authorizer(self->db, NULL, NULL); in pysqlite_connection_set_authorizer_impl() 1408 rc = sqlite3_set_authorizer(self->db, authorizer_callback, ctx); in pysqlite_connection_set_authorizer_impl()
|
/third_party/python/ |
H A D | configure | 14343 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_set_authorizer in -lsqlite3" >&5 14344 printf %s "checking for sqlite3_set_authorizer in -lsqlite3... " >&6; } 14357 char sqlite3_set_authorizer (); 14361 return sqlite3_set_authorizer ();
|
/third_party/sqlite/src/ |
H A D | shell.c | 11227 sqlite3_set_authorizer(pNew->dbv, idxAuthCallback, (void*)pNew); in sqlite3_expert_new() 19598 sqlite3_set_authorizer(p->db, safeModeAuth, p); in open_db() 22048 sqlite3_set_authorizer(p->db, shellAuth, p); in do_meta_command() 22050 sqlite3_set_authorizer(p->db, safeModeAuth, p); in do_meta_command() 22052 sqlite3_set_authorizer(p->db, 0, 0); in do_meta_command()
|
H A D | sqlite3.c | 3401 ** parameter to the sqlite3_set_authorizer() interface. ^The second parameter 3441 ** at a time. Each call to sqlite3_set_authorizer overrides the 3461 SQLITE_API int sqlite3_set_authorizer( 3470 ** The [sqlite3_set_authorizer | authorizer callback function] must 3473 ** [sqlite3_set_authorizer | authorizer documentation] for additional 3485 ** The [sqlite3_set_authorizer()] interface registers a callback function 4290 ** attack. Developers might also want to use the [sqlite3_set_authorizer()] 10251 ** return value from the [sqlite3_set_authorizer()] callback and that 14652 ** 2. The sqlite3_set_authorizer() callback uses the LEGACY name 117256 SQLITE_API int sqlite3_set_authorizer( global() function 132415 #define sqlite3_set_authorizer global() macro 132660 # define sqlite3_set_authorizer global() macro [all...] |
Completed in 208 milliseconds