Lines Matching refs:BootControlInterface
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()
1164 BootControlInterface* boot_control = system_state_->boot_control(); in ResetStatus()