Home
last modified time | relevance | path

Searched refs:sqlite3_open_v2 (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
DSQLiteFileSystem.cpp51 …return sqlite3_open_v2(filename.utf8().data(), database, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREAT… in openDatabase()
/external/chromium_org/third_party/sqlite/src/test/
Dopenv2.test12 # Tests on the sqlite3_open_v2() interface.
/external/chromium_org/third_party/sqlite/src/tool/
Dspeedtest8inst1.c183 rc = sqlite3_open_v2( in main()
/external/chromium_org/third_party/sqlite/src/src/
Dtest_superlock.c198 rc = sqlite3_open_v2( in sqlite3demo_superlock()
Dloadext.c307 sqlite3_open_v2,
Dsqlite3ext.h374 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
Dsqlite.h.in216 ** [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 …]
Dtclsqlite.c2528 rc = sqlite3_open_v2(zSrcFile, &pSrc, SQLITE_OPEN_READONLY, 0); in DbObjCmd()
2962 sqlite3_open_v2(zFile, &p->db, flags, zVfs); in DbMain()
Dmain.c2055 int sqlite3_open_v2( in sqlite3_open_v2() function
/external/sqlite/dist/orig/
Dsqlite3ext.h398 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
Dsqlite3.h2656 SQLITE_API int sqlite3_open_v2(
Dsqlite3.c3206 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/
Dsqlite3ext.h398 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
Dsqlite3.h2656 SQLITE_API int sqlite3_open_v2(
Dsqlite3.c3206 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/
Dsqlite3.h2420 SQLITE_API int sqlite3_open_v2(
Dsqlite3.c2963 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/
Dsqlite_jni.c1155 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()