HomeSort by relevance Sort by last modified time
    Searched refs:SQLiteConnectionPool (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 72 public final class SQLiteConnectionPool implements Closeable {
73 private static final String TAG = "SQLiteConnectionPool";
148 private SQLiteConnectionPool(SQLiteDatabaseConfiguration configuration) {
170 public static SQLiteConnectionPool open(SQLiteDatabaseConfiguration configuration) {
176 SQLiteConnectionPool pool = new SQLiteConnectionPool(configuration);
    [all...]
SQLiteDatabase.java 124 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;
804 mConnectionPoolLocked = SQLiteConnectionPool.open(mConfigurationLocked);
    [all...]
SQLiteSession.java 164 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}.
    [all...]
SQLiteConnection.java 57 * 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.
391 // Called by SQLiteConnectionPool only.
433 // Called by SQLiteConnectionPool only.
440 // Called by SQLiteConnectionPool only.
    [all...]

Completed in 59 milliseconds