Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/bootloader_support/include/
Desp_app_format.h125 } esp_app_desc_t; typedef
128 _Static_assert(sizeof(esp_app_desc_t) == 256, "esp_app_desc_t should be 256 bytes");
Dbootloader_common.h165 …r_common_get_partition_description(const esp_partition_pos_t *partition, esp_app_desc_t *app_desc);
/device/soc/esp/esp32/components/app_update/include/
Desp_ota_ops.h57 const esp_app_desc_t *esp_ota_get_app_description(void);
252 esp_err_t esp_ota_get_partition_description(const esp_partition_t *partition, esp_app_desc_t *app_d…
/device/soc/esp/esp32/components/bootloader_support/src/
Dbootloader_common_loader.c118 …er_common_get_partition_description(const esp_partition_pos_t *partition, esp_app_desc_t *app_desc) in bootloader_common_get_partition_description()
125 const uint32_t mmap_size = app_desc_offset + sizeof(esp_app_desc_t); in bootloader_common_get_partition_description()
132 memcpy(app_desc, image + app_desc_offset, sizeof(esp_app_desc_t)); in bootloader_common_get_partition_description()
Dbootloader_utility.c272 esp_app_desc_t app_desc; in check_anti_rollback()
283 esp_app_desc_t app_desc; in update_anti_rollback()
/device/soc/esp/esp32/components/app_update/
Desp_app_desc.c22 const __attribute__((section(".rodata_desc"))) esp_app_desc_t esp_app_desc = {
61 const esp_app_desc_t *esp_ota_get_app_description(void) in esp_ota_get_app_description()
Desp_ota_ops.c462 esp_app_desc_t partition_app_desc; in esp_ota_set_boot_partition()
627 esp_err_t esp_ota_get_partition_description(const esp_partition_t *partition, esp_app_desc_t *app_d… in esp_ota_get_partition_description()
637 …sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t), app_desc, sizeof(esp_app_desc_t)); in esp_ota_get_partition_description()
651 const esp_app_desc_t *app_desc = esp_ota_get_app_description(); in esp_ota_set_anti_rollback()
698 esp_app_desc_t app_desc; in esp_ota_check_rollback_is_possible()
/device/soc/esp/esp32/components/esp_system/
Dstartup.c377 const esp_app_desc_t *app_desc = esp_ota_get_app_description(); in start_cpu0_default()