/system/update_engine/ |
D | boot_control_chromeos.h | 31 class BootControlChromeOS : public BootControlInterface { 45 BootControlInterface::Slot GetCurrentSlot() const override; 47 BootControlInterface::Slot slot, 49 bool IsSlotBootable(BootControlInterface::Slot slot) const override; 50 bool MarkSlotUnbootable(BootControlInterface::Slot slot) override; 51 bool SetActiveBootSlot(BootControlInterface::Slot slot) override; 71 BootControlInterface::Slot slot) const; 74 BootControlInterface::Slot num_slots_{1}; 75 BootControlInterface::Slot current_slot_{BootControlInterface::kInvalidSlot};
|
D | boot_control_android.h | 31 class BootControlAndroid : public BootControlInterface { 42 BootControlInterface::Slot GetCurrentSlot() const override; 44 BootControlInterface::Slot slot, 46 bool IsSlotBootable(BootControlInterface::Slot slot) const override; 47 bool MarkSlotUnbootable(BootControlInterface::Slot slot) override; 48 bool SetActiveBootSlot(BootControlInterface::Slot slot) override;
|
D | system_state.h | 45 class BootControlInterface; variable 73 virtual BootControlInterface* boot_control() = 0;
|
D | boot_control_chromeos.cc | 78 std::unique_ptr<BootControlInterface> CreateBootControl() { in CreateBootControl() 124 current_slot_ = BootControlInterface::kInvalidSlot; in Init() 138 BootControlInterface::Slot BootControlChromeOS::GetCurrentSlot() const { in GetCurrentSlot() 280 BootControlInterface::Slot slot) const { in GetPartitionNumber()
|
D | update_attempter_android.h | 53 BootControlInterface* boot_control_, 129 BootControlInterface* boot_control_;
|
D | fake_system_state.h | 51 BootControlInterface* boot_control() override { return boot_control_; } in boot_control() 111 void set_boot_control(BootControlInterface* boot_control) { in set_boot_control() 252 BootControlInterface* boot_control_{&fake_boot_control_};
|
D | real_system_state.h | 77 inline BootControlInterface* boot_control() override { in boot_control() 137 std::unique_ptr<BootControlInterface> boot_control_;
|
D | boot_control_android.cc | 58 std::unique_ptr<BootControlInterface> CreateBootControl() { in CreateBootControl() 93 BootControlInterface::Slot BootControlAndroid::GetCurrentSlot() const { in GetCurrentSlot()
|
D | update_attempter.cc | 757 GetRollbackSlot() != BootControlInterface::kInvalidSlot); in CanRollback() 760 BootControlInterface::Slot UpdateAttempter::GetRollbackSlot() const { in GetRollbackSlot() 763 const BootControlInterface::Slot current_slot = in GetRollbackSlot() 768 << BootControlInterface::SlotName(current_slot); in GetRollbackSlot() 770 if (current_slot == BootControlInterface::kInvalidSlot || num_slots < 2) { in GetRollbackSlot() 772 return BootControlInterface::kInvalidSlot; in GetRollbackSlot() 775 vector<BootControlInterface::Slot> bootable_slots; in GetRollbackSlot() 776 for (BootControlInterface::Slot slot = 0; slot < num_slots; slot++) { in GetRollbackSlot() 780 << BootControlInterface::SlotName(slot); in GetRollbackSlot() 785 return BootControlInterface::kInvalidSlot; in GetRollbackSlot() [all …]
|
D | daemon_state_android.h | 57 std::unique_ptr<BootControlInterface> boot_control_;
|
D | common_service.cc | 302 BootControlInterface::Slot rollback_slot = in GetRollbackPartition() 305 if (rollback_slot == BootControlInterface::kInvalidSlot) { in GetRollbackPartition()
|
/system/update_engine/common/ |
D | fake_boot_control.h | 31 class FakeBootControl : public BootControlInterface { 41 BootControlInterface::Slot GetCurrentSlot() const override { in GetCurrentSlot() 46 BootControlInterface::Slot slot, in GetPartitionDevice() 57 bool IsSlotBootable(BootControlInterface::Slot slot) const override { in IsSlotBootable() 61 bool MarkSlotUnbootable(BootControlInterface::Slot slot) override { in MarkSlotUnbootable() 84 void SetCurrentSlot(BootControlInterface::Slot slot) { in SetCurrentSlot() 89 BootControlInterface::Slot slot, in SetPartitionDevice() 95 void SetSlotBootable(BootControlInterface::Slot slot, bool bootable) { in SetSlotBootable() 101 BootControlInterface::Slot num_slots_{2}; 102 BootControlInterface::Slot current_slot_{0};
|
D | boot_control_stub.h | 33 class BootControlStub : public BootControlInterface { 40 BootControlInterface::Slot GetCurrentSlot() const override; 42 BootControlInterface::Slot slot, 44 bool IsSlotBootable(BootControlInterface::Slot slot) const override; 45 bool MarkSlotUnbootable(BootControlInterface::Slot slot) override; 46 bool SetActiveBootSlot(BootControlInterface::Slot slot) override;
|
D | boot_control_interface.h | 32 class BootControlInterface { 38 virtual ~BootControlInterface() = default; 90 BootControlInterface() = default; 93 DISALLOW_COPY_AND_ASSIGN(BootControlInterface);
|
D | boot_control.h | 30 std::unique_ptr<BootControlInterface> CreateBootControl();
|
D | boot_control_stub.cc | 29 BootControlInterface::Slot BootControlStub::GetCurrentSlot() const { in GetCurrentSlot()
|
/system/update_engine/payload_consumer/ |
D | install_plan.h | 52 bool LoadPartitionsFromSlots(BootControlInterface* boot_control); 65 BootControlInterface::Slot source_slot{BootControlInterface::kInvalidSlot}; 66 BootControlInterface::Slot target_slot{BootControlInterface::kInvalidSlot};
|
D | install_plan.cc | 74 << ", source_slot: " << BootControlInterface::SlotName(source_slot) in Dump() 75 << ", target_slot: " << BootControlInterface::SlotName(target_slot) in Dump() 87 bool InstallPlan::LoadPartitionsFromSlots(BootControlInterface* boot_control) { in LoadPartitionsFromSlots() 90 if (source_slot != BootControlInterface::kInvalidSlot) { in LoadPartitionsFromSlots() 97 if (target_slot != BootControlInterface::kInvalidSlot) { in LoadPartitionsFromSlots()
|
D | postinstall_runner_action.h | 34 class BootControlInterface; variable 38 explicit PostinstallRunnerAction(BootControlInterface* boot_control) in PostinstallRunnerAction() 67 PostinstallRunnerAction(BootControlInterface* boot_control, in PostinstallRunnerAction() 128 BootControlInterface* boot_control_;
|
D | filesystem_verifier_action.h | 53 FilesystemVerifierAction(const BootControlInterface* boot_control, 99 const BootControlInterface* const boot_control_;
|
D | download_action.h | 79 BootControlInterface* boot_control, 141 BootControlInterface* boot_control_;
|
D | delta_performer.h | 40 class BootControlInterface; variable 78 BootControlInterface* boot_control, in DeltaPerformer() 298 BootControlInterface* boot_control_;
|
D | download_action.cc | 42 BootControlInterface* boot_control, in DownloadAction() 181 << BootControlInterface::SlotName(install_plan_.target_slot) in PerformAction()
|
D | filesystem_verifier_action.cc | 45 const BootControlInterface* boot_control, in FilesystemVerifierAction()
|
/system/update_engine/update_manager/ |
D | real_system_provider.h | 34 chromeos_update_engine::BootControlInterface* boot_control) in RealSystemProvider() 63 chromeos_update_engine::BootControlInterface* boot_control_;
|