Searched defs:boot_control (Results 1 - 12 of 12) sorted by relevance

/system/update_engine/common/
H A Dboot_control.h25 namespace boot_control { namespace in namespace:chromeos_update_engine
32 } // namespace boot_control
/system/update_engine/payload_consumer/
H A Dinstall_plan.cc87 bool InstallPlan::LoadPartitionsFromSlots(BootControlInterface* boot_control) { argument
91 result = boot_control->GetPartitionDevice(
98 result = boot_control->GetPartitionDevice(
H A Dpostinstall_runner_action.h38 explicit PostinstallRunnerAction(BootControlInterface* boot_control) argument
39 : PostinstallRunnerAction(boot_control, nullptr) {}
67 PostinstallRunnerAction(BootControlInterface* boot_control, argument
69 : boot_control_(boot_control),
H A Dfilesystem_verifier_action.cc45 const BootControlInterface* boot_control,
48 boot_control_(boot_control) {}
44 FilesystemVerifierAction( const BootControlInterface* boot_control, VerifierMode verifier_mode) argument
H A Ddownload_action.cc42 BootControlInterface* boot_control,
47 boot_control_(boot_control),
41 DownloadAction(PrefsInterface* prefs, BootControlInterface* boot_control, HardwareInterface* hardware, SystemState* system_state, HttpFetcher* http_fetcher) argument
H A Ddelta_performer.h78 BootControlInterface* boot_control,
83 boot_control_(boot_control),
77 DeltaPerformer(PrefsInterface* prefs, BootControlInterface* boot_control, HardwareInterface* hardware, DownloadActionDelegate* download_delegate, InstallPlan* install_plan) argument
/system/update_engine/update_manager/
H A Dreal_system_provider.h34 chromeos_update_engine::BootControlInterface* boot_control)
35 : hardware_(hardware), boot_control_(boot_control) {}
32 RealSystemProvider( chromeos_update_engine::HardwareInterface* hardware, chromeos_update_engine::BootControlInterface* boot_control) argument
/system/update_engine/
H A Dboot_control_android.cc55 namespace boot_control { namespace in namespace:chromeos_update_engine
57 // Factory defined in boot_control.h.
59 std::unique_ptr<BootControlAndroid> boot_control(new BootControlAndroid());
60 if (!boot_control->Init()) {
63 return brillo::make_unique_ptr(boot_control.release());
66 } // namespace boot_control
74 LOG(ERROR) << "Error loading boot_control HAL implementation.";
81 LOG(INFO) << "Loaded boot_control HAL "
145 LOG(ERROR) << "boot_control impl returned no suffix for slot "
H A Dboot_control_chromeos.cc32 #include "update_engine/common/boot_control.h"
75 namespace boot_control { namespace in namespace:chromeos_update_engine
77 // Factory defined in boot_control.h.
87 } // namespace boot_control
H A Dfake_system_state.h51 BootControlInterface* boot_control() override { return boot_control_; }
111 void set_boot_control(BootControlInterface* boot_control) { argument
112 boot_control_ = boot_control ? boot_control : &fake_boot_control_;
H A Dupdate_attempter_android.cc75 BootControlInterface* boot_control,
79 boot_control_(boot_control),
72 UpdateAttempterAndroid( DaemonStateAndroid* daemon_state, PrefsInterface* prefs, BootControlInterface* boot_control, HardwareInterface* hardware) argument
H A Dupdate_attempter.cc588 new PostinstallRunnerAction(system_state_->boot_control()));
614 new FilesystemVerifierAction(system_state_->boot_control(),
631 system_state_->boot_control(),
644 new FilesystemVerifierAction(system_state_->boot_control(),
720 install_plan.source_slot = system_state_->boot_control()->GetCurrentSlot();
723 install_plan.LoadPartitionsFromSlots(system_state_->boot_control()));
762 const unsigned int num_slots = system_state_->boot_control()->GetNumSlots();
764 system_state_->boot_control()->GetCurrentSlot();
778 system_state_->boot_control()->IsSlotBootable(slot)) {
1164 BootControlInterface* boot_control local
[all...]

Completed in 347 milliseconds