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"
71 struct SQLiteConnection { struct in namespace:android
89 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) : function in struct:android::SQLiteConnection
95 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
102 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
109 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data);
117 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";
107 // The native SQLiteConnection pointer. (FOR INTERNAL USE ONLY)
158 private SQLiteConnection(SQLiteConnectionPool pool, method in class:SQLiteConnection
185 static SQLiteConnection open(SQLiteConnectionPool pool,
188 SQLiteConnection connection = new SQLiteConnection(pool, configuration,
1176 return "SQLiteConnection: " + mConfiguration.path + " (" + mConnectionId + ")";
1215 * does not have a finalizer. This is deliberate. The {@link SQLiteConnection}
H A DSQLiteSession.java166 private SQLiteConnection mConnection;

Completed in 170 milliseconds