Searched refs:image_handle (Results 1 – 4 of 4) sorted by relevance
/trusted-firmware-a/drivers/partition/ |
A D | partition.c | 60 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_header() 81 static int load_gpt_header(uintptr_t image_handle) in load_gpt_header() argument 91 result = io_read(image_handle, (uintptr_t)&header, in load_gpt_header() 143 static int load_mbr_entries(uintptr_t image_handle) in load_mbr_entries() argument 151 load_mbr_entry(image_handle, &mbr_entry, i); in load_mbr_entries() 179 result = load_gpt_entry(image_handle, &entry); in verify_partition_gpt() 201 uintptr_t dev_handle, image_handle, image_spec = 0; in load_partition_table() local 224 result = load_gpt_header(image_handle); in load_partition_table() 228 result = verify_partition_gpt(image_handle); in load_partition_table() 230 result = load_mbr_entries(image_handle); in load_partition_table() [all …]
|
/trusted-firmware-a/docs/resources/diagrams/plantuml/ |
A D | io_framework_usage_overview.puml | 36 bl_common -> io_storage : io_open(dev_handle, image_spec, &image_handle) 38 bl_common <-- io_storage : image_handle 39 bl_common -> io_storage : io_size(image_handle, &image_size) 41 bl_common -> io_storage : io_read(image_handle, image_base, image_size, &bytes_read) 43 bl_common -> io_storage : io_close(image_handle)
|
/trusted-firmware-a/drivers/fwu/ |
A D | fwu.c | 78 uintptr_t dev_handle, image_handle, image_spec; in fwu_metadata_load() local 93 result = io_open(dev_handle, image_spec, &image_handle); in fwu_metadata_load() 100 result = io_read(image_handle, (uintptr_t)&metadata, in fwu_metadata_load() 130 (void)io_close(image_handle); in fwu_metadata_load()
|
/trusted-firmware-a/common/ |
A D | bl_common.c | 73 uintptr_t image_handle; in load_image() local 94 io_result = io_open(dev_handle, image_spec, &image_handle); in load_image() 104 io_result = io_size(image_handle, &image_size); in load_image() 126 io_result = io_read(image_handle, image_base, image_size, &bytes_read); in load_image() 136 (void)io_close(image_handle); in load_image()
|
Completed in 5 milliseconds