Searched defs:endTransaction (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteSession.java81 * {@link #setTransactionSuccessful}and ended with {@link #endTransaction}.
110 * session.endTransaction();
270 * to {@link #endTransaction}. To mark a transaction as successful,
271 * call {@link #setTransactionSuccessful} before calling {@link #endTransaction}.
292 * @see #endTransaction
359 * {@link #endTransaction} to indicate that the changes made by the transaction should be
368 * @see #endTransaction
397 public void endTransaction(CancellationSignal cancellationSignal) { method in class:SQLiteSession
500 * @see #endTransaction
880 endTransaction(cancellationSigna
[all...]
H A DSQLiteDatabase.java411 * db.endTransaction();
435 * db.endTransaction();
460 * db.endTransaction();
488 * db.endTransaction();
519 public void endTransaction() { method in class:SQLiteDatabase
522 getThreadSession().endTransaction(null);
530 * calling this and calling endTransaction. Do as little non-database work as possible in that
531 * situation too. If any errors are encountered between this and endTransaction the transaction

Completed in 450 milliseconds