Searched refs:sqlite3_open_v2 (Results 1 – 18 of 18) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
D | SQLiteFileSystem.cpp | 51 …return sqlite3_open_v2(filename.utf8().data(), database, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREAT… in openDatabase()
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | openv2.test | 12 # Tests on the sqlite3_open_v2() interface.
|
/external/chromium_org/third_party/sqlite/src/tool/ |
D | speedtest8inst1.c | 183 rc = sqlite3_open_v2( in main()
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | test_superlock.c | 198 rc = sqlite3_open_v2( in sqlite3demo_superlock()
|
D | loadext.c | 307 sqlite3_open_v2,
|
D | sqlite3ext.h | 374 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
|
D | sqlite.h.in | 216 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] 281 ** [sqlite3_open_v2()], and not previously closed. 458 ** 3rd parameter to the [sqlite3_open_v2()] interface and 462 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */ 463 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */ 464 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */ 475 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */ 476 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */ 477 #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */ 478 #define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */ [all …]
|
D | tclsqlite.c | 2528 rc = sqlite3_open_v2(zSrcFile, &pSrc, SQLITE_OPEN_READONLY, 0); in DbObjCmd() 2962 sqlite3_open_v2(zFile, &p->db, flags, zVfs); in DbMain()
|
D | main.c | 2055 int sqlite3_open_v2( in sqlite3_open_v2() function
|
/external/sqlite/dist/orig/ |
D | sqlite3ext.h | 398 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
|
D | sqlite3.h | 2656 SQLITE_API int sqlite3_open_v2(
|
D | sqlite3.c | 3206 SQLITE_API int sqlite3_open_v2( 91371 #define sqlite3_open_v2 sqlite3_api->open_v2 91713 sqlite3_open_v2, 114783 SQLITE_API int sqlite3_open_v2(
|
/external/sqlite/dist/ |
D | sqlite3ext.h | 398 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
|
D | sqlite3.h | 2656 SQLITE_API int sqlite3_open_v2(
|
D | sqlite3.c | 3206 SQLITE_API int sqlite3_open_v2( 91407 #define sqlite3_open_v2 sqlite3_api->open_v2 91749 sqlite3_open_v2, 114819 SQLITE_API int sqlite3_open_v2(
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.h | 2420 SQLITE_API int sqlite3_open_v2(
|
D | sqlite3.c | 2963 SQLITE_API int sqlite3_open_v2( 87063 #define sqlite3_open_v2 sqlite3_api->open_v2 87398 sqlite3_open_v2, 109507 SQLITE_API int sqlite3_open_v2(
|
/external/javasqlite/src/main/native/ |
D | sqlite_jni.c | 1155 int rc = sqlite3_open_v2(filename.result, (sqlite3 **) &h->sqlite, in Java_SQLite_Database__1open4() 1178 if (sqlite3_open_v2(filename.result, (sqlite3 **) &h->sqlite, in Java_SQLite_Database__1open4()
|