Searched refs:hdr_offset (Results 1 – 3 of 3) sorted by relevance
/mcuboot-latest/boot/espressif/include/ |
D | esp_loader.h | 9 void start_cpu0_image(int image_index, int slot, unsigned int hdr_offset); 11 void start_cpu1_image(int image_index, int slot, unsigned int hdr_offset); 14 void esp_app_image_load(int image_index, int slot, unsigned int hdr_offset, unsigned int *entry_add…
|
/mcuboot-latest/boot/espressif/port/ |
D | esp_loader.c | 38 void esp_app_image_load(int image_index, int slot, unsigned int hdr_offset, unsigned int *entry_add… in esp_app_image_load() argument 52 …const uint32_t *data = (const uint32_t *)bootloader_mmap((fap->fa_off + hdr_offset), sizeof(esp_im… in esp_app_image_load() 90 void start_cpu0_image(int image_index, int slot, unsigned int hdr_offset) in start_cpu0_image() argument 93 esp_app_image_load(image_index, slot, hdr_offset, &entry_addr); in start_cpu0_image() 99 void start_cpu1_image(int image_index, int slot, unsigned int hdr_offset) in start_cpu1_image() argument 102 esp_app_image_load(image_index, slot, hdr_offset, &entry_addr); in start_cpu1_image()
|
/mcuboot-latest/boot/zephyr/ |
D | main.c | 248 static void copy_img_to_SRAM(int slot, unsigned int hdr_offset) in copy_img_to_SRAM() argument 253 unsigned char *dst = (unsigned char *)(SRAM_BASE_ADDRESS + hdr_offset); in copy_img_to_SRAM() 264 rc = flash_area_read(fap, hdr_offset, dst, fap->fa_size - hdr_offset); in copy_img_to_SRAM()
|