Home
last modified time | relevance | path

Searched refs:ih_flags (Results 1 – 9 of 9) sorted by relevance

/mcuboot-latest/boot/bootutil/include/bootutil/
Dimage.h166 uint32_t ih_flags; /* IMAGE_F_[...]. */ variable
184 #define IS_ENCRYPTED(hdr) (((hdr)->ih_flags & IMAGE_F_ENCRYPTED_AES128) \
185 || ((hdr)->ih_flags & IMAGE_F_ENCRYPTED_AES256))
191 #define IS_COMPRESSED(hdr) ((hdr)->ih_flags & COMPRESSIONFLAGS)
/mcuboot-latest/ci/fih_test_docker/
Ddamage_image.py38 self.ih_flags = 0
50 h.ih_flags, h.iv_major, h.iv_minor, h.iv_revision, h.iv_build_num, h._pad1
61 " ih_flags = " + str(self.ih_flags),
/mcuboot-latest/boot/mynewt/src/
Dsingle_loader.c52 hdr->ih_flags &= ~(ENCRYPTIONFLAGS); in boot_image_validate()
/mcuboot-latest/boot/zephyr/
Dsingle_loader.c60 hdr->ih_flags &= ~(ENCRYPTIONFLAGS); in boot_image_validate()
Dfirmware_loader.c56 hdr->ih_flags &= ~(ENCRYPTIONFLAGS); in boot_image_validate()
/mcuboot-latest/boot/bootutil/src/
Dram_load.c329 if (hdr->ih_flags & IMAGE_F_RAM_LOAD) { in boot_load_image_to_sram()
Dloader.c910 if ((hdr->ih_flags & IMAGE_F_ENCRYPTED_AES128) &&
911 (hdr->ih_flags & IMAGE_F_ENCRYPTED_AES256))
922 if ((hdr->ih_flags & IMAGE_F_COMPRESSED_LZMA1) &&
923 (hdr->ih_flags & IMAGE_F_COMPRESSED_LZMA2))
996 if (hdr->ih_flags & IMAGE_F_ROM_FIXED && hdr->ih_load_addr != f_off) {
1041 (hdr->ih_flags & IMAGE_F_NON_BOOTABLE)) {
Dbootutil_public.c778 if (hdr->ih_flags & IMAGE_F_NON_BOOTABLE) { in boot_image_load_header()
/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c371 hdr.ih_flags &= ~ENCRYPTIONFLAGS; in bs_list()
437 if (!(hdr.ih_flags & IMAGE_F_NON_BOOTABLE)) { in bs_list()