HomeSort by relevance Sort by last modified time
    Searched full:rollback (Results 176 - 200 of 437) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 233 public virtual void Rollback( int instructionIndex )
235 Rollback( DEFAULT_PROGRAM_NAME, instructionIndex );
239 * Rollback the instruction stream for a program so that
244 public virtual void Rollback( string programName, int instructionIndex )
265 Rollback( programName, MIN_TOKEN_INDEX );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/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/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenRewriteStream.m 245 - (void) rollback:(NSInteger)instructionIndex
247 [self rollback:DEFAULT_PROGRAM_NAME Index:instructionIndex];
250 /** Rollback the instruction stream for a program so that
254 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex
276 [self rollback:programName Index:MIN_TOKEN_INDEX];
  /external/chromium_org/chrome/browser/history/
top_sites_database.cc 222 sql::Recovery::Rollback(recovery.Pass());
241 sql::Recovery::Rollback(recovery.Pass());
249 sql::Recovery::Rollback(recovery.Pass());
265 sql::Recovery::Rollback(recovery.Pass());
273 sql::Recovery::Rollback(recovery.Pass());
history_database.h 51 // support rollback since the history database doesn't, either.
100 // that it is impossible to rollback a specific transaction. We could roll
  /external/chromium_org/third_party/sqlite/src/test/
io.test 272 # Try an explicit ROLLBACK before the journal file is created.
286 ROLLBACK;
305 execsql { ROLLBACK; }
336 execsql { ROLLBACK }
345 execsql { ROLLBACK }
malloc.test 115 ROLLBACK;
352 # hot-journal rollback, sqlite will report SQLITE_CORRUPT. See commit
575 catch {db eval {ROLLBACK}} msg
579 # hot-journal rollback, sqlite will report SQLITE_CORRUPT. See commit
703 ROLLBACK;
735 # the malloc failure and rollback, the change counter will not
misc3.test 258 execsql {BEGIN; EXPLAIN ROLLBACK}
259 catchsql {ROLLBACK}
backup2.test 80 db2 eval {ROLLBACK}
crash2.test 14 # uses its rollback journal to recover intact (no database corruption)
crash3.test 12 # This file contains tests that verify that SQLite can correctly rollback
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 146 /** Rollback the instruction stream for a program so that
150 rollback: function() {
170 this.rollback(programName, trs.MIN_TOKEN_INDEX);
  /external/chromium_org/chrome/installer/util/
google_update_settings_unittest.cc 181 work_item_list->Rollback();
377 work_item_list->Rollback();
388 work_item_list->Rollback();
398 work_item_list->Rollback();
408 work_item_list->Rollback();
441 work_item_list->Rollback();
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 108 self.cx.rollback()
112 A rollback should also work when no changes were made to the database.
114 self.cx.rollback()
115 self.cx.rollback()
528 con.rollback()
758 con.rollback()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 108 self.cx.rollback()
112 A rollback should also work when no changes were made to the database.
114 self.cx.rollback()
115 self.cx.rollback()
528 con.rollback()
758 con.rollback()
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransaction.cpp 134 // Transaction Step 11 - Rollback the transaction.
182 // Spec 4.3.2.10: Rollback the transaction.
DatabaseSync.cpp 148 transaction->rollback();
  /frameworks/ex/common/tests/src/com/android/common/
OperationSchedulerTest.java 243 // The rollback also moved the last-attempt clock back to the rollback time.
  /external/chromium_org/chrome/installer/setup/
install.cc 174 // manner. If failed it tries to rollback all changes on the file system
179 // and removes the whole directory during rollback.
219 install_list->Rollback();
220 LOG(ERROR) << "Rollback complete. ";
  /external/chromium_org/sql/
recovery.h 109 static void Rollback(scoped_ptr<Recovery> r);
  /external/chromium_org/third_party/sqlite/src/src/
btree.h 58 #define BTREE_OMIT_JOURNAL 1 /* Do not create or use a rollback journal */
pcache.h 49 #define PGHDR_NEED_SYNC 0x004 /* Fsync the rollback journal before
sqliteLimit.h 144 ** compiled with the default page-size limit will not be able to rollback
test_demovfs.c 58 ** To commit a transaction to the database, SQLite first writes rollback
61 ** 1. The rollback information is sequentially written into the journal
72 ** eleven calls to the xWrite() method to create the rollback journal,
103 ** a complete block. This means the actual IO to create the rollback
wal.h 80 ** response to a ROLLBACK TO command. */

Completed in 3549 milliseconds

1 2 3 4 5 6 78 91011>>