HomeSort by relevance Sort by last modified time
    Searched refs:rollback (Results 1 - 25 of 44) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/sql/
SQLiteTransaction.h 44 void rollback();
SQLiteTransaction.cpp 45 rollback();
76 void SQLiteTransaction::rollback() function in class:WebCore::SQLiteTransaction
78 // We do not use the 'm_inProgress = m_db.executeCommand("ROLLBACK")' construct here,
79 // because m_inProgress should always be set to false after a ROLLBACK, and
80 // m_db.executeCommand("ROLLBACK") can sometimes harmlessly fail, thus returning
84 m_db.executeCommand("ROLLBACK");
  /external/webkit/Source/WebCore/storage/
SQLTransactionSync.h 65 void rollback();
SQLTransactionSync.cpp 71 rollback();
197 void SQLTransactionSync::rollback() function in class:WebCore::SQLTransactionSync
202 m_sqliteTransaction->rollback();
DatabaseSync.cpp 153 transaction->rollback();
IDBBackingStore.h 105 virtual void rollback() = 0;
IDBTransactionBackendImpl.cpp 116 m_transaction->rollback();
SQLTransaction.cpp 537 // Transaction Step 12 - Rollback the transaction.
568 // Transaction Step 12 - Rollback the transaction.
569 m_sqliteTransaction->rollback();
IDBSQLiteBackingStore.cpp 1005 virtual void rollback() { m_transaction.rollback(); } function in class:WebCore::__anon13449::TransactionImpl
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 60 * Call {@link #commit} to commit the changes, or {@link #rollback} to forget the changes.
100 public void rollback() { method in class:JournaledFile
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.h 111 // rollback semantics
116 CacheLock(DiskCache* cache, const std::string& id, bool rollback = false)
117 : cache_(cache), id_(id), rollback_(rollback)
  /external/libxml2/
pattern.c 509 goto rollback;
517 goto rollback;
520 goto rollback;
524 goto rollback;
526 goto rollback;
531 goto rollback;
534 goto rollback;
536 goto rollback;
548 goto rollback;
563 goto rollback;
    [all...]
xmlregexp.c 314 * A stack of rollback states
    [all...]
  /libcore/luni/src/main/java/java/sql/
Connection.java 114 * {@code rollback} of the associated transaction. All locks in the database
627 public void rollback() throws SQLException; method in interface:Connection
638 public void rollback(Savepoint savepoint) throws SQLException; method in interface:Connection
647 * explicit calls to either the {@link #commit()} or {@link #rollback()}
    [all...]
  /external/libxslt/libxslt/
pattern.c 682 goto rollback;
685 goto rollback;
689 goto rollback;
691 goto rollback;
696 goto rollback;
699 goto rollback;
701 goto rollback;
706 goto rollback;
709 goto rollback;
711 goto rollback;
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 156 public void rollback() throws SQLException { method in class:TestHelper_Connection1
159 public void rollback(Savepoint savepoint) throws SQLException { method in class:TestHelper_Connection1
  /external/chromium/app/sql/
connection.cc 148 // When we're going to rollback, fail on this begin and don't actually
174 // Mark the outermost transaction as needing rollback.
386 Statement rollback(GetCachedStatement(SQL_FROM_HERE, "ROLLBACK"));
387 if (rollback)
388 rollback.Run();
  /frameworks/base/core/jni/
android_database_SQLiteDatabase.cpp 324 goto rollback;
331 goto rollback;
339 goto rollback;
346 goto rollback;
353 goto rollback;
360 goto rollback;
371 rollback:
373 sqlite3_exec(handle, "ROLLBACK TRANSACTION", NULL, NULL, NULL);
  /libcore/luni/src/test/java/libcore/sqlite/
AbstractSqlTest.java 178 * - rollback data from connection one
188 firstStmt.getConnection().rollback();
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 215 rollback(); method
306 public void rollback() throws SQLException { method in class:JDBCConnection
314 db.exec("ROLLBACK", null);
324 db.exec("ROLLBACK", null);
413 public void rollback(Savepoint x) throws SQLException { method in class:JDBCConnection
  /external/antlr/src/org/antlr/runtime/
TokenRewriteStream.java 187 public void rollback(int instructionIndex) { method in class:TokenRewriteStream
188 rollback(DEFAULT_PROGRAM_NAME, instructionIndex); method
191 /** Rollback the instruction stream for a program so that
195 public void rollback(String programName, int instructionIndex) { method in class:TokenRewriteStream
208 rollback(programName, MIN_TOKEN_INDEX); method
  /external/icu4c/i18n/unicode/
translit.h 648 * non-incremental transliteration, and rollback. All transliteration
649 * public API methods eventually call this method with a rollback argument
650 * of TRUE. Other entities may call this method but rollback should be
657 * <p>In incremental mode, if rollback is TRUE, perform a special
668 * @param rollback if TRUE and if incremental is TRUE, then perform special
676 UBool rollback) const;
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldConnectionTest.java     [all...]
OldResultSetTest.java 171 conn.rollback();
  /external/icu4c/i18n/
translit.cpp 430 UBool rollback) const {
433 if (filter == 0 && !rollback) {
512 // Implement rollback. To understand the need for rollback,
540 if (rollback && isIncrementalRun) {
546 // Make a rollback copy at the end of the string
553 // advanced past rollback text that corresponds to committed
603 // Copy the rollback text back
638 // Delete the rollback copy
    [all...]

Completed in 1235 milliseconds

1 2