Searched defs:setTransactionSuccessful (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteSession.java75 * To end an explicit transaction, first call {@link #setTransactionSuccessful} if the
81 * {@link #setTransactionSuccessful}and ended with {@link #endTransaction}.
105 * session.setTransactionSuccessful();
271 * call {@link #setTransactionSuccessful} before calling {@link #endTransaction}.
285 * @throws IllegalStateException if {@link #setTransactionSuccessful} has already been
290 * @see #setTransactionSuccessful
365 * {@link #setTransactionSuccessful} has already been called for the current transaction.
370 public void setTransactionSuccessful() { method in class:SQLiteSession
381 * transaction), then the changes are committed if {@link #setTransactionSuccessful}
394 * @see #setTransactionSuccessful
[all...]
H A DSQLiteDatabase.java430 * marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.
438 * db.setTransactionSuccessful();
453 * marked as clean (by calling setTransactionSuccessful). Otherwise they
462 * db.setTransactionSuccessful();
479 * marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.
487 * db.setTransactionSuccessful();
506 * marked as clean (by calling setTransactionSuccessful). Otherwise they
515 * db.setTransactionSuccessful();
566 public void setTransactionSuccessful() { method in class:SQLiteDatabase
569 getThreadSession().setTransactionSuccessful();
[all...]
/frameworks/support/persistence/db/src/main/java/android/arch/persistence/db/
H A DSupportSQLiteDatabase.java55 * marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.
63 * db.setTransactionSuccessful();
76 * marked as clean (by calling setTransactionSuccessful). Otherwise they
85 * db.setTransactionSuccessful();
100 * marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.
108 * db.setTransactionSuccessful();
125 * marked as clean (by calling setTransactionSuccessful). Otherwise they
134 * db.setTransactionSuccessful();
161 void setTransactionSuccessful(); method in interface:SupportSQLiteDatabase
186 * successful so far. Do not call setTransactionSuccessful befor
[all...]
/frameworks/support/persistence/db-framework/src/main/java/android/arch/persistence/db/framework/
H A DFrameworkSQLiteDatabase.java92 public void setTransactionSuccessful() { method in class:FrameworkSQLiteDatabase
93 mDelegate.setTransactionSuccessful();
/frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/
H A DRoomDatabase.java223 * Wrapper for {@link SupportSQLiteDatabase#setTransactionSuccessful()}.
225 public void setTransactionSuccessful() { method in class:RoomDatabase
226 mOpenHelper.getWritableDatabase().setTransactionSuccessful();
239 setTransactionSuccessful();
257 setTransactionSuccessful();
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountsDb.java671 db.setTransactionSuccessful();
1262 void setTransactionSuccessful() { method in class:AccountsDb
1263 mDeDatabase.getWritableDatabase().setTransactionSuccessful();

Completed in 180 milliseconds