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

  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabaseConfiguration.java 62 public int openFlags;
97 * @param openFlags Open flags for the database, such as {@link SQLiteDatabase#OPEN_READWRITE}.
99 public SQLiteDatabaseConfiguration(String path, int openFlags) {
106 this.openFlags = openFlags;
143 openFlags = other.openFlags;
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 81 const int openFlags;
87 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) :
88 db(db), openFlags(openFlags), path(path), label(label), canceled(false) { }
112 static jint nativeOpen(JNIEnv* env, jclass clazz, jstring pathStr, jint openFlags,
115 if (openFlags & SQLiteConnection::CREATE_IF_NECESSARY) {
117 } else if (openFlags & SQLiteConnection::OPEN_READONLY) {
162 SQLiteConnection* connection = new SQLiteConnection(db, openFlags, path, label);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
btreeInt.h 412 u8 openFlags; /* Flags to sqlite3BtreeOpen() */
os_unix.c 216 int openFlags; /* The flags specified at open() */
    [all...]
sqliteInt.h 805 int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1968 milliseconds