OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Rollback
(Results
1 - 25
of
70
) sorted by null
1
2
3
/external/chromium_org/chrome/installer/util/
conditional_work_item_list.cc
27
void ConditionalWorkItemList::
Rollback
() {
29
WorkItemList::
Rollback
();
callback_work_item.h
13
// A work item that invokes a callback on Do() and
Rollback
(). In the following
20
// //
Rollback
work goes here. The return value is ignored in this case.
39
virtual void
Rollback
() OVERRIDE;
create_dir_work_item.h
21
//
Rollback
tries to remove all directories created along the path.
25
virtual void
Rollback
();
create_reg_key_work_item.h
23
virtual void
Rollback
();
delete_reg_key_work_item.h
20
// that in the event of
rollback
the key's values and subkeys are restored but
28
virtual void
Rollback
() OVERRIDE;
self_reg_work_item.h
19
virtual void
Rollback
();
44
// Whether this work item will register or unregister the dll. The
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;
delete_reg_value_work_item.h
23
virtual void
Rollback
();
35
// The status after Do() and
Rollback
() is called.
delete_tree_work_item.h
26
virtual void
Rollback
();
copy_reg_key_work_item_unittest.cc
33
// Test that copying a key that doesn't exist succeeds, and that
rollback
does
51
item->
Rollback
();
59
// Test that copying an empty key succeeds, and that
rollback
removes the copy.
70
item->
Rollback
();
77
// Test that copying a key with subkeys and values succeeds, and that
rollback
89
item->
Rollback
();
121
//
Rollback
should do nothing.
122
item->
Rollback
();
131
//
rollback
restores the original data.
157
item->
Rollback
();
[
all
...]
callback_work_item.cc
30
void CallbackWorkItem::
Rollback
() {
callback_work_item_unittest.cc
43
// Test that the callback is invoked correclty during Do() and
Rollback
().
52
work_item.
Rollback
();
conditional_work_item_list.h
25
// Does a
rollback
of the items (if any) that were run in Do.
26
virtual void
Rollback
();
create_dir_work_item_unittest.cc
48
work_item->
Rollback
();
50
//
Rollback
should delete all the paths up to top_dir_to_create.
68
work_item->
Rollback
();
70
//
Rollback
should not remove the path since it exists before
98
work_item->
Rollback
();
100
//
Rollback
should delete dir_to_create_3.
103
//
Rollback
should not delete dir_to_create_2 as it is shared.
128
work_item->
Rollback
();
130
// dir_to_create_3 has already been deleted,
Rollback
should delete
move_tree_work_item.h
19
// to the destination location. During
rollback
the original destination
27
virtual void
Rollback
();
37
// specified by |dest_path|. To facilitate
rollback
, the caller needs to
66
// temporary directory. If true, moving back is needed during
rollback
.
delete_reg_value_work_item_unittest.cc
45
// recreated after
Rollback
().
82
work_item1->
Rollback
();
83
work_item2->
Rollback
();
84
work_item3->
Rollback
();
128
work_item1->
Rollback
();
129
work_item2->
Rollback
();
set_reg_value_work_item_unittest.cc
79
work_item1->
Rollback
();
80
work_item2->
Rollback
();
82
//
Rollback
should delete the value.
118
work_item1->
Rollback
();
119
work_item2->
Rollback
();
121
//
Rollback
should delete the value.
153
work_item->
Rollback
();
170
work_item->
Rollback
();
215
work_item1->
Rollback
();
216
work_item2->
Rollback
();
[
all
...]
copy_tree_work_item.h
19
// to the destination location. During
rollback
the original destination
25
// losing ACLs or other metadata in the case of a
rollback
.
32
virtual void
Rollback
();
39
// Notes on temp_path: to facilitate
rollback
, the caller needs to supply
72
// temporary directory. If true, moving back is needed during
rollback
.
76
// existed and was in use. Needed during
rollback
.
create_dir_work_item.cc
47
void CreateDirWorkItem::
Rollback
() {
51
// Delete all the directories we created to
rollback
.
/external/chromium/app/sql/
transaction.h
37
void
Rollback
();
42
//
rollback
of all transactions in that outermost one).
transaction.cc
31
void Transaction::
Rollback
() {
transaction_unittest.cc
59
TEST_F(SQLTransactionTest,
Rollback
) {
60
// Test some basic initialization, and that
rollback
runs when you exit the
74
// Test explicit
rollback
.
80
t2.
Rollback
();
118
inner2.
Rollback
();
/external/chromium_org/sql/
transaction.h
40
void
Rollback
();
45
//
rollback
of all transactions in that outermost one).
transaction.cc
31
void Transaction::
Rollback
() {
transaction_unittest.cc
57
TEST_F(SQLTransactionTest,
Rollback
) {
58
// Test some basic initialization, and that
rollback
runs when you exit the
72
// Test explicit
rollback
.
78
t2.
Rollback
();
116
inner2.
Rollback
();
Completed in 725 milliseconds
1
2
3