Lines Matching refs:mDelegate

51     private final SQLiteDatabase mDelegate;
59 mDelegate = delegate;
64 return new FrameworkSQLiteStatement(mDelegate.compileStatement(sql));
69 mDelegate.beginTransaction();
74 mDelegate.beginTransactionNonExclusive();
79 mDelegate.beginTransactionWithListener(transactionListener);
85 mDelegate.beginTransactionWithListenerNonExclusive(transactionListener);
90 mDelegate.endTransaction();
95 mDelegate.setTransactionSuccessful();
100 return mDelegate.inTransaction();
105 return mDelegate.isDbLockedByCurrentThread();
110 return mDelegate.yieldIfContendedSafely();
115 return mDelegate.yieldIfContendedSafely(sleepAfterYieldDelay);
120 return mDelegate.getVersion();
125 mDelegate.setVersion(version);
130 return mDelegate.getMaximumSize();
135 return mDelegate.setMaximumSize(numBytes);
140 return mDelegate.getPageSize();
145 mDelegate.setPageSize(numBytes);
161 return mDelegate.rawQueryWithFactory(new SQLiteDatabase.CursorFactory() {
175 return mDelegate.rawQueryWithFactory(new SQLiteDatabase.CursorFactory() {
188 return mDelegate.insertWithOnConflict(table, null, values,
242 mDelegate.execSQL(sql);
247 mDelegate.execSQL(sql, bindArgs);
252 return mDelegate.isReadOnly();
257 return mDelegate.isOpen();
262 return mDelegate.needUpgrade(newVersion);
267 return mDelegate.getPath();
272 mDelegate.setLocale(locale);
277 mDelegate.setMaxSqlCacheSize(cacheSize);
283 mDelegate.setForeignKeyConstraintsEnabled(enable);
288 return mDelegate.enableWriteAheadLogging();
294 mDelegate.disableWriteAheadLogging();
300 return mDelegate.isWriteAheadLoggingEnabled();
305 return mDelegate.getAttachedDbs();
310 return mDelegate.isDatabaseIntegrityOk();
315 mDelegate.close();