Home | History | Annotate | Download | only in update_engine

Lines Matching refs:Slot

90 BootControlInterface::Slot BootControlAndroid::GetCurrentSlot() const {
95 Slot slot,
98 // doesn't list every slot partition (it uses the slotselect option
106 // |partition_name| and suffix corresponding to |slot|, e.g.
126 const char* suffix = module_->getSuffix(module_, slot);
128 LOG(ERROR) << "boot_control impl returned no suffix for slot "
129 << SlotName(slot);
143 bool BootControlAndroid::IsSlotBootable(Slot slot) const {
144 int ret = module_->isSlotBootable(module_, slot);
146 LOG(ERROR) << "Unable to determine if slot " << SlotName(slot)
153 bool BootControlAndroid::MarkSlotUnbootable(Slot slot) {
154 int ret = module_->setSlotAsUnbootable(module_, slot);
156 LOG(ERROR) << "Unable to mark slot " << SlotName(slot)
163 bool BootControlAndroid::SetActiveBootSlot(Slot slot) {
164 int ret = module_->setActiveBootSlot(module_, slot);
166 LOG(ERROR) << "Unable to set the active slot to slot " << SlotName(slot)