HomeSort by relevance Sort by last modified time
    Searched full:sqlite3_open_v2 (Results 1 - 9 of 9) sorted by null

  /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/sqlite/dist/orig/
sqlite3.c 432 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
516 ** [sqlite3_open_v2()], and not previously closed.
719 ** 3rd parameter to the [sqlite3_open_v2()] interface and
722 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
723 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
724 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
102284 #define sqlite3_open_v2 macro
130931 SQLITE_API int SQLITE_STDCALL sqlite3_open_v2( function
    [all...]
sqlite3.h 225 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
309 ** [sqlite3_open_v2()], and not previously closed.
512 ** 3rd parameter to the [sqlite3_open_v2()] interface and
515 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
516 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
517 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
521 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */
522 #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */
530 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */
531 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */
    [all...]
sqlite3ext.h 429 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
  /external/sqlite/dist/
sqlite3.c 432 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
516 ** [sqlite3_open_v2()], and not previously closed.
719 ** 3rd parameter to the [sqlite3_open_v2()] interface and
722 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
723 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
724 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
102302 #define sqlite3_open_v2 macro
130949 SQLITE_API int SQLITE_STDCALL sqlite3_open_v2( function
    [all...]
sqlite3.h 225 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
309 ** [sqlite3_open_v2()], and not previously closed.
512 ** 3rd parameter to the [sqlite3_open_v2()] interface and
515 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
516 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
517 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
521 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */
522 #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */
530 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */
531 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */
    [all...]
sqlite3ext.h 429 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 134 int err = sqlite3_open_v2(path.string(), &db, sqliteFlags, NULL);
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 1155 int rc = sqlite3_open_v2(filename.result, (sqlite3 **) &h->sqlite,
1178 if (sqlite3_open_v2(filename.result, (sqlite3 **) &h->sqlite,
    [all...]

Completed in 1567 milliseconds