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 | 56 void esp_app_image_load(int image_index, int slot, unsigned int hdr_offset, unsigned int *entry_add… in esp_app_image_load() argument 70 …const uint32_t *data = (const uint32_t *)bootloader_mmap((fap->fa_off + hdr_offset), sizeof(esp_im… in esp_app_image_load() 155 void start_cpu0_image(int image_index, int slot, unsigned int hdr_offset) in start_cpu0_image() argument 158 esp_app_image_load(image_index, slot, hdr_offset, &entry_addr); in start_cpu0_image() 164 void start_cpu1_image(int image_index, int slot, unsigned int hdr_offset) in start_cpu1_image() argument 167 esp_app_image_load(image_index, slot, hdr_offset, &entry_addr); in start_cpu1_image()
|
/mcuboot-latest/boot/zephyr/ |
D | main.c | 276 static void copy_img_to_SRAM(int slot, unsigned int hdr_offset) in copy_img_to_SRAM() argument 281 unsigned char *dst = (unsigned char *)(SRAM_BASE_ADDRESS + hdr_offset); in copy_img_to_SRAM() 292 rc = flash_area_read(fap, hdr_offset, dst, fap->fa_size - hdr_offset); in copy_img_to_SRAM()
|