/external/javasqlite/src/main/java/SQLite/ |
Authorizer.java | 4 * Callback interface for SQLite's authorizer function. 7 public interface Authorizer {
|
Database.java | 567 * Set authorizer function. Only available in SQLite 2.7.6 and 570 * @param auth the authorizer function 573 public void set_authorizer(Authorizer auth) { 579 private native void _set_authorizer(Authorizer auth);
|
/external/chromium_org/third_party/sqlite/ |
fts3_85522.patch | 3 WebDatabase uses an authorizer to prevent inappropriate access.
|
/external/chromium_org/third_party/sqlite/src/test/ |
auth2.test | 47 db authorizer ::auth 75 # Make sure the authorizer is not called when parsing the schema
|
auth3.test | 32 db authorizer ::auth 60 } {1 {authorizer malfunction}}
|
vtab3.test | 54 db authorizer ::auth
|
auth.test | 32 db authorizer ::auth 45 db authorizer ::auth 52 db authorizer [all...] |
tclsqlite.test | 38 } {1 {bad option "bogus": must be authorizer, backup, busy, cache, changes, close, collate, collation_needed, commit_hook, complete, copy, enable_load_extension, errorcode, eval, exists, function, incrblob, interrupt, last_insert_rowid, nullvalue, onecolumn, profile, progress, rekey, restore, rollback_hook, status, timeout, total_changes, trace, transaction, unlock_notify, update_hook, version, or wal_hook}} 88 set v [catch {db authorizer 1 2 3} msg] 90 } {1 {wrong # args: should be "db authorizer ?CALLBACK?"}}
|
/external/chromium_org/third_party/sqlite/src/src/ |
auth.c | 88 sqlite3ErrorMsg(pParse, "authorizer malfunction");
|
sqlite.h.in | [all...] |
tclsqlite.c | 121 int disableAuth; /* Disable the authorizer if it exists */ [all...] |
/libcore/luni/src/test/java/libcore/sqlite/ |
OldDatabaseTest.java | 19 import SQLite.Authorizer; 768 // prepare, authorizer is not activated yet 781 // set Authorizer (positive case): denies private table [all...] |
/external/chromium/net/tools/testserver/ |
testserver.py | [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
DatabaseAuthorizer.cpp | 413 // Sadly, normal creates and drops end up affecting sqlite_master in an authorizer callback, so
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
SQLiteDatabase.cpp | 441 WTF_LOG_ERROR("Attempt to set an authorizer on a non-open SQL database");
|
/external/javasqlite/src/main/native/ |
sqlite_jni.h | 173 * Signature: (LSQLite/Authorizer;)V
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
sqlite3.h | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |
sqlite3.h | [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |
sqlite3.h | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
dbapi.py | 810 def authorizer(*args): function in function:ClosedConTests.CheckClosedSetAuthorizer 813 con.set_authorizer(authorizer)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
dbapi.py | 810 def authorizer(*args): function in function:ClosedConTests.CheckClosedSetAuthorizer 813 con.set_authorizer(authorizer)
|
/external/chromium_org/net/tools/testserver/ |
testserver.py | [all...] |