Searched refs:SQLiteConnectionPool (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java72 public final class SQLiteConnectionPool implements Closeable { class in inherits:Closeable
73 private static final String TAG = "SQLiteConnectionPool";
148 private SQLiteConnectionPool(SQLiteDatabaseConfiguration configuration) { method in class:SQLiteConnectionPool
170 public static SQLiteConnectionPool open(SQLiteDatabaseConfiguration configuration) {
176 SQLiteConnectionPool pool = new SQLiteConnectionPool(configuration);
1057 return "SQLiteConnectionPool: " + mConfiguration.path;
H A DSQLiteDatabase.java124 private SQLiteConnectionPool mConnectionPoolLocked;
276 final SQLiteConnectionPool pool;
363 final SQLiteConnectionPool pool;
379 int flags = readOnly ? SQLiteConnectionPool.CONNECTION_FLAG_READ_ONLY :
380 SQLiteConnectionPool.CONNECTION_FLAG_PRIMARY_CONNECTION_AFFINITY;
382 flags |= SQLiteConnectionPool.CONNECTION_FLAG_INTERACTIVE;
806 mConnectionPoolLocked = SQLiteConnectionPool.open(mConfigurationLocked);
H A DSQLiteSession.java164 private final SQLiteConnectionPool mConnectionPool;
227 public SQLiteSession(SQLiteConnectionPool connectionPool) {
282 * acquired by this operation. Refer to {@link SQLiteConnectionPool}.
568 * acquired by this operation. Refer to {@link SQLiteConnectionPool}.
600 * acquired by this operation. Refer to {@link SQLiteConnectionPool}.
631 * acquired by this operation. Refer to {@link SQLiteConnectionPool}.
664 * acquired by this operation. Refer to {@link SQLiteConnectionPool}.
698 * acquired by this operation. Refer to {@link SQLiteConnectionPool}.
734 * acquired by this operation. Refer to {@link SQLiteConnectionPool}.
768 * acquired by this operation. Refer to {@link SQLiteConnectionPool}
[all...]
H A DSQLiteConnection.java57 * object or the {@link SQLiteConnectionPool}. Those classes are
98 private final SQLiteConnectionPool mPool;
160 private SQLiteConnection(SQLiteConnectionPool pool,
186 // Called by SQLiteConnectionPool only.
187 static SQLiteConnection open(SQLiteConnectionPool pool,
201 // Called by SQLiteConnectionPool only.
398 // Called by SQLiteConnectionPool only.
440 // Called by SQLiteConnectionPool only.
447 // Called by SQLiteConnectionPool only.

Completed in 191 milliseconds