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

1 23 4 5 6 7 8 91011>>

  /external/chromium/app/sql/
transaction.h 37 void Rollback();
42 // rollback of all transactions in that outermost one).
transaction.cc 31 void Transaction::Rollback() {
  /external/chromium_org/chrome/installer/util/
conditional_work_item_list.h 25 // Does a rollback of the items (if any) that were run in Do.
26 virtual void Rollback();
copy_reg_key_work_item.h 17 // that in the event of rollback the destination key's values and subkeys are
24 virtual void Rollback() OVERRIDE;
create_dir_work_item.cc 47 void CreateDirWorkItem::Rollback() {
51 // Delete all the directories we created to rollback.
self_reg_work_item.h 19 virtual void Rollback();
44 // Whether this work item will register or unregister the dll. The rollback
create_reg_key_work_item.cc 85 void CreateRegKeyWorkItem::Rollback() {
96 VLOG(1) << "rollback: delete " << key_path;
98 VLOG(1) << "rollback: can not delete " << key_path;
work_item.h 6 // out during install/update/uninstall. Supports rollback of actions if this
37 // A base class that defines APIs to perform/rollback an action or a
176 // Rollback any actions previously carried out by this WorkItem. If the
178 // rolled back. If the WorkItem is non-transactional, the rollback is a
180 virtual void Rollback() = 0;
183 // even on failure and Rollback will have no effect.
work_item_list_unittest.cc 53 // Execute a WorkItem list successfully and then rollback.
95 work_item_list->Rollback();
105 // Execute a WorkItem list. Fail in the middle. Rollback what has been done.
156 work_item_list->Rollback();
210 work_item_list->Rollback();
268 work_item_list->Rollback();
set_reg_value_work_item.h 24 virtual void Rollback();
41 // The status after Do and Rollback is called.
create_reg_key_work_item.h 23 virtual void Rollback();
work_item_list.cc 59 void WorkItemList::Rollback() {
65 (*itr)->Rollback();
247 void NoRollbackWorkItemList::Rollback() {
248 // Ignore rollback.
work_item_list.h 34 // Rollback the WorkItems in the reverse order as they are executed.
35 virtual void Rollback();
160 // Also, as the class name suggests, Rollback is not possible.
171 virtual void Rollback();
  /external/chromium_org/sql/
transaction.h 40 void Rollback();
45 // rollback of all transactions in that outermost one).
  /external/chromium_org/third_party/sqlite/src/test/
corruptC.test 159 catchsql {BEGIN; UPDATE t2 SET y='abcdef-uvwxyz'; ROLLBACK;}
179 catchsql {BEGIN; UPDATE t2 SET y='abcdef-uvwxyz'; ROLLBACK;}
191 catchsql {BEGIN; UPDATE t2 SET y='abcdef-uvwxyz'; ROLLBACK;}
207 catchsql {BEGIN; DELETE FROM t1 WHERE x>13; ROLLBACK;}
219 catchsql {BEGIN; DELETE FROM t1 WHERE x>13; ROLLBACK;}
231 catchsql {BEGIN; UPDATE t2 SET y='abcdef-uvwxyz'; ROLLBACK;}
243 catchsql {BEGIN; CREATE TABLE t3 AS SELECT x,3 as y FROM t2 WHERE rowid%5!=0; ROLLBACK;}
267 catchsql {BEGIN; CREATE TABLE t3 AS SELECT x,3 as y FROM t2 WHERE rowid%5!=0; ROLLBACK;}
358 catchsql {BEGIN; UPDATE t1 SET y=1; ROLLBACK;}
362 catchsql {BEGIN; UPDATE t2 SET y='abcdef-uvwxyz'; ROLLBACK;}
    [all...]
memdb.test 23 # of a table, make lots of modifications to that table, then do a rollback.
24 # Verify that after the rollback, the MD5 checksum is unchanged.
54 # This is used to test ROLLBACK. We gather a signature for t3, then
55 # make lots of changes to t3, then rollback and take another signature.
89 ROLLBACK;
102 ROLLBACK;
139 ROLLBACK;
170 7 {} {INSERT OR ROLLBACK} 1 {} {}
225 6 ROLLBACK {} UPDATE 1 {1 2 3 4} 0
230 11 ROLLBACK {} {UPDATE OR IGNORE} 0 {6 7 3 9}
    [all...]
conflict.test 52 7 {INSERT OR ROLLBACK} 1 {} {} 0
99 7 {INSERT OR ROLLBACK} 1 {} {}
144 7 {INSERT OR ROLLBACK} 1 {} {}
185 6 ROLLBACK INSERT 1 {} {}
190 11 ROLLBACK {INSERT OR IGNORE } 0 3 1
233 6 ROLLBACK INSERT 1 {} {}
238 11 ROLLBACK {INSERT OR IGNORE} 0 {} 1
243 16 {} {INSERT OR ROLLBACK} 1 {} {}
297 6 ROLLBACK UPDATE 1 {1 2 3 4} 0 0 0
302 11 ROLLBACK {UPDATE OR IGNORE} 0 {6 7 3 9} 1 0
    [all...]
crashtest1.c 10 ** failure. The next subprocess to open the database should rollback
15 ** the rollback mechanism is working.
37 /*printf("pid %d: journal exists. rollback will be required\n",getpid());*/ unlink("test.db-saved");
mallocC.test 62 # written this was not the case. So do a manual ROLLBACK here so that the
67 ROLLBACK;
119 ROLLBACK;
mallocD.test 43 ROLLBACK;
  /external/chromium_org/third_party/sqlite/src/tool/
rollback-test.c 9 ** rollback-test new [-utf8] [-utf16le] [-utf16be] [-pagesize=N] DATABASE
10 ** rollback-test check DATABASE
11 ** rollback-test crash [-wal] [-rollback] DATABASE
138 }else if( strcmp(argv[i], "-rollback")==0 ){
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SynchronousContactsProvider2.java 270 Assert.assertFalse("rollback", mOnRollbackTransactionInternalCalledInProfileMode);
276 Assert.assertTrue("rollback", mOnRollbackTransactionInternalCalledInProfileMode);
282 Assert.assertFalse("rollback", mOnRollbackTransactionInternalCalledInProfileMode);
289 Assert.assertFalse("rollback", mOnRollbackTransactionInternalCalledInContactMode);
295 Assert.assertTrue("rollback", mOnRollbackTransactionInternalCalledInContactMode);
  /external/chromium_org/third_party/sqlite/src/src/
memjournal.c 13 ** This file contains code use to implement an in-memory rollback journal.
14 ** The in-memory rollback journal is used to journal transactions for
24 /* Space to hold the rollback journal is allocated in increments of
41 ** The rollback journal is composed of a linked list of these structures.
49 ** An instance of this object serves as a cursor into the rollback journal.
84 /* SQLite never tries to read past the end of a rollback journal file */
  /external/chromium_org/third_party/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/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...]

Completed in 832 milliseconds

1 23 4 5 6 7 8 91011>>