/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;
|
SQLiteDatabase.java | 254 private SQLiteDatabase(String path, int openFlags, CursorFactory cursorFactory, 258 mConfigurationLocked = new SQLiteDatabaseConfiguration(path, openFlags); 774 final int oldOpenFlags = mConfigurationLocked.openFlags; 775 mConfigurationLocked.openFlags = (mConfigurationLocked.openFlags & ~OPEN_READ_MASK) 780 mConfigurationLocked.openFlags = oldOpenFlags; [all...] |
SQLiteConnectionPool.java | 262 boolean walModeChanged = ((configuration.openFlags ^ mConfiguration.openFlags) 294 if (mConfiguration.openFlags != configuration.openFlags) { [all...] |
SQLiteConnection.java | 120 private static native int nativeOpen(String path, int openFlags, String label, 167 mIsReadOnlyConnection = (configuration.openFlags & SQLiteDatabase.OPEN_READONLY) != 0; 209 mConnectionPtr = nativeOpen(mConfiguration.path, mConfiguration.openFlags, 290 if ((mConfiguration.openFlags & SQLiteDatabase.ENABLE_WRITE_AHEAD_LOGGING) != 0) { 355 if ((mConfiguration.openFlags & SQLiteDatabase.NO_LOCALIZED_COLLATORS) != 0) { 414 boolean walModeChanged = ((configuration.openFlags ^ mConfiguration.openFlags) [all...] |
/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/ |
os_unix.c | 216 int openFlags; /* The flags specified at open() */ [all...] |
btreeInt.h | 412 u8 openFlags; /* Flags to sqlite3BtreeOpen() */
|
attach.c | 128 db->openFlags | SQLITE_OPEN_MAIN_DB);
|
main.c | [all...] |
sqliteInt.h | 805 int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ [all...] |
btree.c | [all...] |