Searched refs:SQLiteConnection (Results 1 - 4 of 4) sorted by relevance
/frameworks/base/core/jni/ |
H A D | android_database_SQLiteConnection.cpp | 17 #define LOG_TAG "SQLiteConnection" 68 struct SQLiteConnection { struct in namespace:android 86 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) : function in struct:android::SQLiteConnection 92 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data); 99 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data); 106 SQLiteConnection* connection = static_cast<SQLiteConnection*>(data); 114 if (openFlags & SQLiteConnection [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
H A D | SQLiteConnectionPool.java | 63 * {@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 D | SQLiteConnection.java | 87 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, 1171 return "SQLiteConnection: " + mConfiguration.path + " (" + mConnectionId + ")"; 1206 * does not have a finalizer. This is deliberate. The {@link SQLiteConnection}
|
H A D | SQLiteSession.java | 166 private SQLiteConnection mConnection;
|
Completed in 31 milliseconds