HomeSort by relevance Sort by last modified time
    Searched refs:slot_suffix (Results 1 - 9 of 9) sorted by null

  /test/vts/testcases/host/verify_boot_header/
VtsFirmwareBootHeaderVerification.py 32 PROPERTY_SLOT_SUFFIX = "ro.boot.slot_suffix" # indicates current slot suffix for A/B devices
41 slot_suffix: The current slot suffix for A/B devices.
51 self.slot_suffix = self.dut.getProp(PROPERTY_SLOT_SUFFIX)
52 if self.slot_suffix is None:
53 self.slot_suffix = ""
54 logging.info("current slot suffix: %s", self.slot_suffix)
95 current_boot_partition = "boot" + str(self.slot_suffix)
107 asserts.skipIf(self.slot_suffix,
  /bootable/recovery/bootloader_message/include/bootloader_message/
bootloader_message.h 58 * We used to have slot_suffix field for A/B boot control metadata in
99 * The slot_suffix field is used for A/B implementations where the
100 * bootloader does not set the androidboot.ro.boot.slot_suffix kernel
112 char slot_suffix[32]; member in struct:bootloader_message_ab
149 * be put in the 'slot_suffix' field of the 'bootloader_message'
156 char slot_suffix[4]; member in struct:bootloader_control
178 sizeof(((struct bootloader_message_ab *)0)->slot_suffix),
  /frameworks/native/cmds/installd/
otapreopt_slot.sh 21 SLOT_SUFFIX=$(getprop ro.boot.slot_suffix)
22 if test -n "$SLOT_SUFFIX" ; then
23 if test -d /data/ota/$SLOT_SUFFIX/dalvik-cache ; then
24 log -p i -t otapreopt_slot "Moving A/B artifacts for slot ${SLOT_SUFFIX}."
27 NEW_SIZE=$(du -h -s /data/ota/$SLOT_SUFFIX/dalvik-cache)
28 mv /data/ota/$SLOT_SUFFIX/dalvik-cache/* /data/dalvik-cache/
29 rmdir /data/ota/$SLOT_SUFFIX/dalvik-cache
30 rmdir /data/ota/$SLOT_SUFFIX
33 log -p i -t otapreopt_slot "No A/B artifacts found for slot ${SLOT_SUFFIX}.
    [all...]
dexopt.cpp 2426 std::string slot_suffix; local
    [all...]
  /system/libufdt/tests/
verifyDTBO.sh 18 boot_suffix=$(adb wait-for-device shell getprop ro.boot.slot_suffix)
  /test/vts/testcases/host/verify_dtbo/
VtsFirmwareDtboVerification.py 38 PROPERTY_SLOT_SUFFIX = "ro.boot.slot_suffix" # indicates current slot suffix for A/B devices
116 slot_suffix = str(self.dut.getProp(PROPERTY_SLOT_SUFFIX))
119 slot_suffix = ""
120 current_dtbo_partition = "dtbo" + slot_suffix
  /bootable/recovery/boot_control/
boot_control.cpp 62 constexpr off_t kBootloaderControlOffset = offsetof(bootloader_message_ab, slot_suffix);
134 strlcpy(boot_ctrl->slot_suffix, kSlotSuffixes[module->current_slot],
135 sizeof(boot_ctrl->slot_suffix));
216 std::string suffix_prop = android::base::GetProperty("ro.boot.slot_suffix", "");
  /system/extras/boot_control_copy/
bootinfo.cpp 118 #define BOOTINFO_OFFSET offsetof(struct bootloader_message_ab, slot_suffix)
  /frameworks/base/core/proto/android/os/
system_properties.proto 259 optional string slot_suffix = 15;

Completed in 204 milliseconds