OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:powerwash
(Results
1 - 15
of
15
) sorted by null
/system/update_engine/binder_bindings/android/brillo/
IUpdateEngine.aidl
24
void AttemptRollback(in boolean
powerwash
);
/external/autotest/server/site_tests/autoupdate_Rollback/
autoupdate_Rollback.py
42
#
Powerwash
is tested separately from rollback.
43
updater.rollback_rootfs(
powerwash
=False)
/system/update_engine/client_library/include/update_engine/
client.h
78
// Attempt a rollback. Set '
powerwash
' to reset the device while rolling
80
virtual bool Rollback(bool
powerwash
) = 0;
/system/update_engine/
binder_service_brillo.h
61
android::binder::Status AttemptRollback(bool
powerwash
) override;
68
bool
powerwash
) override;
binder_service_brillo.cc
68
Status BinderUpdateEngineBrilloService::AttemptRollback(bool
powerwash
) {
69
return CallCommonHandler(&UpdateEngineService::AttemptRollback,
powerwash
);
105
const String16& target_channel, bool
powerwash
) {
108
powerwash
);
update_attempter.h
154
// the partition to boot from. If |
powerwash
| is True, perform a
powerwash
156
bool Rollback(bool
powerwash
);
update_engine_client.cc
235
DEFINE_bool(
powerwash
, true,
237
"do a
powerwash
or allow it respectively.");
327
LOG(ERROR) << "
powerwash
flag only makes sense rollback or channel change";
update_attempter.cc
689
bool UpdateAttempter::Rollback(bool
powerwash
) {
695
//
powerwash
.
696
if (
powerwash
) {
703
<< "Cannot perform a
powerwash
for enterprise devices.";
724
install_plan.powerwash_required =
powerwash
;
[
all
...]
/system/update_engine/client_library/
client_binder.cc
93
bool BinderUpdateEngineClient::Rollback(bool
powerwash
) {
94
return service_->AttemptRollback(
powerwash
).isOk();
client_dbus.cc
92
bool DBusUpdateEngineClient::Rollback(bool
powerwash
) {
93
return proxy_->AttemptRollback(
powerwash
, nullptr);
client_binder.h
63
bool Rollback(bool
powerwash
) override;
client_dbus.h
56
bool Rollback(bool
powerwash
) override;
/external/autotest/client/common_lib/cros/
autoupdater.py
370
def rollback_rootfs(self,
powerwash
):
373
@param
powerwash
: If true,
powerwash
as part of rollback.
397
if not
powerwash
:
autoupdater_unittest.py
507
updater.rollback_rootfs(
powerwash
=True)
530
updater.rollback_rootfs(
powerwash
=True)
/external/autotest/site_utils/
test_push.py
120
"""
Powerwash
the dut with the given hostname.
236
# Let's verify the repair flow and
powerwash
the duts. We can
237
# assume they're all cros hosts (valid assumption?) so
powerwash
242
raise TestPushException('Failed to
powerwash
dut %s. Make '
Completed in 1481 milliseconds