/external/javasqlite/src/main/java/SQLite/ |
Constants.java | 46 public static final int SQLITE_OPEN_READONLY = 0x00000001; /* Ok for sqlite3_open_v2() */ 47 public static final int SQLITE_OPEN_READWRITE = 0x00000002; /* Ok for sqlite3_open_v2() */ 48 public static final int SQLITE_OPEN_CREATE = 0x00000004; /* Ok for sqlite3_open_v2() */ 58 public static final int SQLITE_OPEN_NOMUTEX = 0x00008000; /* Ok for sqlite3_open_v2() */ 59 public static final int SQLITE_OPEN_FULLMUTEX = 0x00010000; /* Ok for sqlite3_open_v2() */ 60 public static final int SQLITE_OPEN_SHAREDCACHE = 0x00020000; /* Ok for sqlite3_open_v2() */ 61 public static final int SQLITE_OPEN_PRIVATECACHE = 0x00040000; /* Ok for sqlite3_open_v2() */
|
/external/webkit/Source/WebCore/platform/sql/chromium/ |
SQLiteFileSystemChromium.cpp | 54 return sqlite3_open_v2(fileName.utf8().data(), database, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, "chromium_vfs");
|
/external/sqlite/dist/orig/ |
sqlite3.c | 771 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] 836 ** [sqlite3_open_v2()], and not previously closed. 91371 #define sqlite3_open_v2 macro 114783 SQLITE_API int sqlite3_open_v2( function [all...] |
sqlite3.h | 221 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] 286 ** [sqlite3_open_v2()], and not previously closed. 470 ** 3rd parameter to the [sqlite3_open_v2()] interface and 473 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */ 474 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */ 475 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */ 479 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */ 487 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */ 488 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */ 489 #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */ [all...] |
sqlite3ext.h | 398 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
|
/external/sqlite/dist/ |
sqlite3.c | 771 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] 836 ** [sqlite3_open_v2()], and not previously closed. 91407 #define sqlite3_open_v2 macro 114819 SQLITE_API int sqlite3_open_v2( function [all...] |
sqlite3.h | 221 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] 286 ** [sqlite3_open_v2()], and not previously closed. 470 ** 3rd parameter to the [sqlite3_open_v2()] interface and 473 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */ 474 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */ 475 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */ 479 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */ 487 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */ 488 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */ 489 #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */ [all...] |
sqlite3ext.h | 398 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
|
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
sqlite3.h | 168 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] 235 ** [sqlite3_open_v2()], and not previously closed. 392 ** 3rd parameter to the [sqlite3_open_v2()] interface and 667 ** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()] [all...] |
sqlite3ext.h | 355 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
|
/frameworks/base/core/jni/ |
android_database_SQLiteConnection.cpp | 131 int err = sqlite3_open_v2(path.string(), &db, sqliteFlags, NULL); [all...] |
/external/javasqlite/src/main/native/ |
sqlite_jni.c | 1156 int rc = sqlite3_open_v2(filename.result, (sqlite3 **) &h->sqlite, 1179 if (sqlite3_open_v2(filename.result, (sqlite3 **) &h->sqlite, [all...] |