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

/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp17 #define LOG_TAG "SQLiteConnection"
69 struct SQLiteConnection { struct in namespace:android
87 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) : function in struct:android::SQLiteConnection
93 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
100 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
107 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
115 if (openFlags & SQLiteConnection
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java63 * {@link SQLiteConnection} then we must be prepared to handle any
92 private final ArrayList<SQLiteConnection> mAvailableNonPrimaryConnections =
93 new ArrayList<SQLiteConnection>();
94 private SQLiteConnection mAvailablePrimaryConnection;
113 private final WeakHashMap<SQLiteConnection, AcquiredConnectionStatus> mAcquiredConnections =
114 new WeakHashMap<SQLiteConnection, AcquiredConnectionStatus>();
306 SQLiteConnection newPrimaryConnection = openConnectionLocked(configuration,
346 public SQLiteConnection acquireConnection(String sql, int connectionFlags,
363 public void releaseConnection(SQLiteConnection connection) {
392 private boolean recycleConnectionLocked(SQLiteConnection connectio
[all...]
H A DSQLiteConnection.java87 public final class SQLiteConnection implements CancellationSignal.OnCancelListener { class in inherits:CancellationSignal.OnCancelListener
88 private static final String TAG = "SQLiteConnection";
109 // The native SQLiteConnection pointer. (FOR INTERNAL USE ONLY)
160 private SQLiteConnection(SQLiteConnectionPool pool, method in class:SQLiteConnection
187 static SQLiteConnection open(SQLiteConnectionPool pool,
190 SQLiteConnection connection = new SQLiteConnection(pool, configuration,
1178 return "SQLiteConnection: " + mConfiguration.path + " (" + mConnectionId + ")";
1213 * does not have a finalizer. This is deliberate. The {@link SQLiteConnection}
H A DSQLiteSession.java166 private SQLiteConnection mConnection;

Completed in 1026 milliseconds