Home | History | Annotate | Download | only in sqlite

Lines Matching defs:mConnection

166     private SQLiteConnection mConnection;
259 return mConnection != null;
319 mConnection.execute("BEGIN IMMEDIATE;", null,
323 mConnection.execute("BEGIN EXCLUSIVE;", null,
327 mConnection.execute("BEGIN;", null, cancellationSignal); // might throw
338 mConnection.execute("ROLLBACK;", null, cancellationSignal); // might throw
399 assert mConnection != null;
437 mConnection.execute("COMMIT;", null, cancellationSignal); // might throw
439 mConnection.execute("ROLLBACK;", null, cancellationSignal); // might throw
514 assert mConnection != null;
530 if (!mConnectionPool.shouldYieldConnection(mConnection, mConnectionFlags)) {
588 mConnection.prepare(sql, outStatementInfo); // might throw
619 mConnection.execute(sql, bindArgs, cancellationSignal); // might throw
652 return mConnection.executeForLong(sql, bindArgs, cancellationSignal); // might throw
685 return mConnection.executeForString(sql, bindArgs, cancellationSignal); // might throw
720 return mConnection.executeForBlobFileDescriptor(sql, bindArgs,
754 return mConnection.executeForChangedRowCount(sql, bindArgs,
788 return mConnection.executeForLastInsertedRowId(sql, bindArgs,
836 return mConnection.executeForCursorWindow(sql, bindArgs,
892 if (mConnection == null) {
894 mConnection = mConnectionPool.acquireConnection(sql, connectionFlags,
902 assert mConnection != null;
906 mConnectionPool.releaseConnection(mConnection); // might throw
908 mConnection = null;