Home
last modified time | relevance | path

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

/mcuboot-latest/boot/bootutil/include/bootutil/
Dimage.h163 uint32_t ih_flags; /* IMAGE_F_[...]. */ member
181 #define IS_ENCRYPTED(hdr) (((hdr)->ih_flags & IMAGE_F_ENCRYPTED_AES128) \
182 || ((hdr)->ih_flags & IMAGE_F_ENCRYPTED_AES256))
188 #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/zephyr/
Dsingle_loader.c52 hdr->ih_flags &= ~(ENCRYPTIONFLAGS); in boot_image_validate()
Dfirmware_loader.c56 hdr->ih_flags &= ~(ENCRYPTIONFLAGS); in boot_image_validate()
/mcuboot-latest/boot/mynewt/src/
Dsingle_loader.c52 hdr->ih_flags &= ~(ENCRYPTIONFLAGS); in boot_image_validate()
/mcuboot-latest/boot/bootutil/src/
Dloader.c934 if ((hdr->ih_flags & IMAGE_F_ENCRYPTED_AES128) &&
935 (hdr->ih_flags & IMAGE_F_ENCRYPTED_AES256))
946 if ((hdr->ih_flags & IMAGE_F_COMPRESSED_LZMA1) &&
947 (hdr->ih_flags & IMAGE_F_COMPRESSED_LZMA2))
1020 if (hdr->ih_flags & IMAGE_F_ROM_FIXED && hdr->ih_load_addr != f_off) {
1061 (hdr->ih_flags & IMAGE_F_NON_BOOTABLE)) {
3052 if (hdr->ih_flags & IMAGE_F_RAM_LOAD) {
Dbootutil_public.c750 if (hdr->ih_flags & IMAGE_F_NON_BOOTABLE) { in boot_image_load_header()
/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c321 hdr.ih_flags &= ~ENCRYPTIONFLAGS; in bs_list()
378 if (!(hdr.ih_flags & IMAGE_F_NON_BOOTABLE)) { in bs_list()