OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:powerwash
(Results
1 - 14
of
14
) 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/
binder_service_brillo.h
60
android::binder::Status AttemptRollback(bool
powerwash
) override;
67
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
148
// the partition to boot from. If |
powerwash
| is True, perform a
powerwash
150
bool Rollback(bool
powerwash
);
update_engine_client.cc
246
DEFINE_bool(
powerwash
, true,
248
"do a
powerwash
or allow it respectively.");
361
LOG(ERROR) << "
powerwash
flag only makes sense rollback or channel change";
update_attempter.cc
675
bool UpdateAttempter::Rollback(bool
powerwash
) {
681
//
powerwash
.
682
if (
powerwash
) {
689
<< "Cannot perform a
powerwash
for enterprise devices.";
710
install_plan.powerwash_required =
powerwash
;
[
all
...]
/system/update_engine/client_library/include/update_engine/
client.h
82
// Attempt a rollback. Set '
powerwash
' to reset the device while rolling
84
virtual bool Rollback(bool
powerwash
) = 0;
/system/update_engine/client_library/
client_binder.h
65
bool Rollback(bool
powerwash
) override;
client_dbus.h
59
bool Rollback(bool
powerwash
) override;
client_binder.cc
107
bool BinderUpdateEngineClient::Rollback(bool
powerwash
) {
108
return service_->AttemptRollback(
powerwash
).isOk();
client_dbus.cc
100
bool DBusUpdateEngineClient::Rollback(bool
powerwash
) {
101
return proxy_->AttemptRollback(
powerwash
, nullptr);
/external/autotest/client/common_lib/cros/
autoupdater.py
459
def rollback_rootfs(self,
powerwash
):
462
@param
powerwash
: If true,
powerwash
as part of rollback.
486
if not
powerwash
:
autoupdater_unittest.py
614
updater.rollback_rootfs(
powerwash
=True)
637
updater.rollback_rootfs(
powerwash
=True)
Completed in 242 milliseconds