HomeSort by relevance Sort by last modified time
    Searched refs:boot_control (Results 1 - 25 of 34) sorted by null

1 2

  /system/update_engine/common/
boot_control.h 25 namespace boot_control { namespace in namespace:chromeos_update_engine
32 } // namespace boot_control
  /bootable/recovery/boot_control/
Android.mk 22 LOCAL_SRC_FILES := boot_control.cpp
  /system/update_engine/update_manager/
real_system_provider.h 40 chromeos_update_engine::BootControlInterface* boot_control,
44 boot_control_(boot_control),
47 boot_control_(boot_control) {}
state_factory.cc 73 system_state->hardware(), system_state->boot_control(), libcros_proxy));
  /hardware/qcom/bootctrl/
Android.mk 12 LOCAL_SRC_FILES := boot_control.cpp
25 LOCAL_SRC_FILES := boot_control.cpp
  /system/update_engine/
boot_control_recovery.cc 35 // the right boot_control HAL, instead we use the only HAL statically linked in
42 namespace boot_control { namespace in namespace:chromeos_update_engine
44 // Factory defined in boot_control.h.
46 std::unique_ptr<BootControlRecovery> boot_control(new BootControlRecovery());
47 if (!boot_control->Init()) {
50 return std::move(boot_control);
53 } // namespace boot_control
68 LOG(ERROR) << "Error loading boot_control HAL implementation.";
76 LOG(INFO) << "Loaded boot_control HAL "
126 LOG(ERROR) << "boot_control impl returned no suffix for slot
    [all...]
boot_control_recovery.h 22 #include <hardware/boot_control.h>
25 #include "update_engine/common/boot_control.h"
30 // implementation uses the legacy libhardware's boot_control HAL to access the
38 // Load boot_control HAL implementation using libhardware and
system_state.h 66 virtual BootControlInterface* boot_control() = 0;
boot_control_android.cc 44 namespace boot_control {
46 // Factory defined in boot_control.h.
48 std::unique_ptr<BootControlAndroid> boot_control(new BootControlAndroid());
49 if (!boot_control->Init()) {
52 return std::move(boot_control);
55 } // namespace boot_control
116 LOG(ERROR) << "boot_control impl returned no suffix for slot "
sideload_main.cc 32 #include "update_engine/common/boot_control.h"
160 std::unique_ptr<BootControlInterface> boot_control = local
161 boot_control::CreateBootControl();
162 if (!boot_control) {
174 &sideload_daemon_state, &prefs, boot_control.get(), hardware.get());
daemon_state_android.cc 21 #include "update_engine/common/boot_control.h"
30 boot_control_ = boot_control::CreateBootControl();
fake_system_state.h 51 BootControlInterface* boot_control() override { return boot_control_; }
109 void set_boot_control(BootControlInterface* boot_control) {
110 boot_control_ = boot_control ? boot_control : &fake_boot_control_;
update_attempter.cc 572 new PostinstallRunnerAction(system_state_->boot_control(),
613 system_state_->boot_control(),
694 install_plan.source_slot = system_state_->boot_control()->GetCurrentSlot();
697 install_plan.LoadPartitionsFromSlots(system_state_->boot_control()));
736 const unsigned int num_slots = system_state_->boot_control()->GetNumSlots();
738 system_state_->boot_control()->GetCurrentSlot();
752 system_state_->boot_control()->IsSlotBootable(slot)) {
1138 BootControlInterface* boot_control = system_state_->boot_control(); local
    [all...]
real_system_state.h 83 inline BootControlInterface* boot_control() override {
omaha_response_handler_action.cc 130 install_plan_.source_slot = system_state_->boot_control()->GetCurrentSlot();
real_system_state.cc 31 #include "update_engine/common/boot_control.h"
56 boot_control_ = boot_control::CreateBootControl();
  /system/update_engine/payload_consumer/
postinstall_runner_action.h 40 PostinstallRunnerAction(BootControlInterface* boot_control,
42 : boot_control_(boot_control), hardware_(hardware) {}
install_plan.cc 96 bool InstallPlan::LoadPartitionsFromSlots(BootControlInterface* boot_control) {
100 result = boot_control->GetPartitionDevice(
107 result = boot_control->GetPartitionDevice(
download_action.h 78 BootControlInterface* boot_control,
install_plan.h 52 bool LoadPartitionsFromSlots(BootControlInterface* boot_control);
delta_performer.h 68 BootControlInterface* boot_control,
75 boot_control_(boot_control),
download_action_unittest.cc 165 fake_system_state.boot_control(),
279 fake_system_state.boot_control(),
369 fake_system_state_.boot_control(),
471 fake_system_state_.boot_control(),
561 fake_system_state_.boot_control(),
download_action.cc 43 BootControlInterface* boot_control,
49 boot_control_(boot_control),
  /external/avb/boot_control/
boot_control_avb.c 29 #include <hardware/boot_control.h>
157 .name = "AVB implementation of boot_control HAL",
  /hardware/interfaces/boot/1.0/default/
BootControl.cpp 21 #include <hardware/boot_control.h>

Completed in 334 milliseconds

1 2