Home
last modified time | relevance | path

Searched refs:setActiveBootSlot (Results 1 – 20 of 20) sorted by relevance

/aosp12/hardware/interfaces/boot/1.0/vts/functional/
H A DVtsHalBootV1_0TargetTest.cpp90 Return<void> result = boot->setActiveBootSlot(s, generate_callback(&cr)); in TEST_P()
96 auto result = boot->setActiveBootSlot(curSlot, generate_callback(&cr)); in TEST_P()
113 Return<void> result = boot->setActiveBootSlot(slots, generate_callback(&cr)); in TEST_P()
132 result = boot->setActiveBootSlot(otherSlot, generate_callback(&cr)); in TEST_P()
136 result = boot->setActiveBootSlot(curSlot, generate_callback(&cr)); in TEST_P()
/aosp12/hardware/interfaces/boot/1.2/vts/functional/
H A DVtsHalBootV1_2TargetTest.cpp57 Return<void> result = boot->setActiveBootSlot(otherSlot, generate_callback(&cr)); in TEST_P()
62 result = boot->setActiveBootSlot(curSlot, generate_callback(&cr)); in TEST_P()
/aosp12/hardware/interfaces/boot/1.2/
H A DIBootControl.hal27 * setActiveBootSlot() has been called, the getter function should return the
28 * same slot as the one provided in the last setActiveBootSlot() call.
/aosp12/hardware/interfaces/boot/1.0/default/
H A DBootControl.cpp55 Return<void> BootControl::setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) { in setActiveBootSlot() function in android::hardware::boot::V1_0::implementation::BootControl
56 int ret = mModule->setActiveBootSlot(mModule, slot); in setActiveBootSlot()
H A DBootControl.h44 Return<void> setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) override;
/aosp12/hardware/google/pixel/bootctrl/
H A DLegacyBootControl.cpp56 Return<void> BootControl::setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) { in setActiveBootSlot() function in android::hardware::boot::V1_2::implementation::BootControl
57 int ret = mModule->setActiveBootSlot(mModule, slot); in setActiveBootSlot()
H A DLegacyBootControl.h40 Return<void> setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) override;
/aosp12/hardware/libhardware/include/hardware/
H A Dboot_control.h93 int (*setActiveBootSlot)(struct boot_control_module *module, unsigned slot); member
/aosp12/hardware/interfaces/boot/1.1/default/
H A DBootControl.h44 Return<void> setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) override;
H A DBootControl.cpp58 Return<void> BootControl::setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) { in setActiveBootSlot() function in android::hardware::boot::V1_1::implementation::BootControl
/aosp12/hardware/interfaces/boot/1.2/default/
H A DBootControl.h43 Return<void> setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) override;
H A DBootControl.cpp58 Return<void> BootControl::setActiveBootSlot(uint32_t slot, setActiveBootSlot_cb _hidl_cb) { in setActiveBootSlot() function in android::hardware::boot::V1_2::implementation::BootControl
/aosp12/hardware/interfaces/boot/1.1/default/boot_control/
H A Dlegacy_boot_control.cpp109 .setActiveBootSlot = BootControl_setActiveBootSlot,
/aosp12/hardware/interfaces/boot/1.0/
H A DIBootControl.hal61 * setActiveBootSlot() marks the slot passed in parameter as the active boot
66 setActiveBootSlot(Slot slot) generates (CommandResult error);
/aosp12/system/update_engine/aosp/
H A Dboot_control_android.cc135 auto ret = module_->setActiveBootSlot(slot, StoreResultCallback(&result)); in SetActiveBootSlot()
/aosp12/system/extras/boot_control_copy/
H A Dboot_control_copy.cpp268 .setActiveBootSlot = module_setActiveBootSlot,
/aosp12/hardware/ti/am57x/bootctrl/
H A Dboot_control.cc340 .setActiveBootSlot = SetActiveBootSlot,
/aosp12/system/extras/bootctl/
H A Dbootctl.cpp120 Return<void> ret = module->setActiveBootSlot(slot_number, generate_callback(&cr)); in do_set_active_boot_slot()
/aosp12/hardware/qcom/bootctrl/
H A Dboot_control.cpp696 .setActiveBootSlot = set_active_boot_slot,
/aosp12/system/core/fastboot/device/
H A Dcommands.cpp341 auto result = boot_control_hal->setActiveBootSlot(slot, cb); in SetActiveHandler()