Home
last modified time | relevance | path

Searched refs:boot_control_hal (Results 1 – 4 of 4) sorted by relevance

/system/core/fastboot/device/
Dvariables.cpp214 auto boot_control_hal = device->boot_control_hal(); in GetSlotCount() local
215 if (!boot_control_hal) { in GetSlotCount()
218 *message = std::to_string(boot_control_hal->getNumberSlots()); in GetSlotCount()
234 auto boot_control_hal = device->boot_control_hal(); in GetSlotSuccessful() local
235 if (!boot_control_hal) { in GetSlotSuccessful()
239 if (boot_control_hal->isSlotMarkedSuccessful(slot) != BoolResult::TRUE) { in GetSlotSuccessful()
258 auto boot_control_hal = device->boot_control_hal(); in GetSlotUnbootable() local
259 if (!boot_control_hal) { in GetSlotUnbootable()
263 if (boot_control_hal->isSlotBootable(slot) != BoolResult::TRUE) { in GetSlotUnbootable()
Dutility.cpp213 auto boot_control_hal = device->boot_control_hal(); in UpdateAllPartitionMetadata() local
214 if (boot_control_hal) { in UpdateAllPartitionMetadata()
215 num_slots = boot_control_hal->getNumberSlots(); in UpdateAllPartitionMetadata()
Dfastboot_device.h53 android::sp<android::hardware::boot::V1_0::IBootControl> boot_control_hal() { in boot_control_hal() function
Dcommands.cpp305 auto boot_control_hal = device->boot_control_hal(); in SetActiveHandler() local
306 if (!boot_control_hal) { in SetActiveHandler()
310 if (slot >= boot_control_hal->getNumberSlots()) { in SetActiveHandler()
341 auto result = boot_control_hal->setActiveBootSlot(slot, cb); in SetActiveHandler()