Lines Matching refs:image
139 const uint8_t *image = bootloader_mmap(partition->offset, mmap_size); in bootloader_common_get_partition_description() local
140 if (image == NULL) { in bootloader_common_get_partition_description()
145 memcpy(app_desc, image + app_desc_offset, sizeof(esp_app_desc_t)); in bootloader_common_get_partition_description()
146 bootloader_munmap(image); in bootloader_common_get_partition_description()
755 for (int i = 0; i < data->image.segment_count; i++) {
778 data->image.entry_addr);
792 for (int i = 0; i < data->image.segment_count; i++) {
823 data->image.entry_addr);
994 const void * image = bootloader_mmap(flash_offset, partial_image_len); local
995 if (image == NULL) {
999 bootloader_sha256_data(sha_handle, image, partial_image_len);
1000 bootloader_munmap(image);