Searched refs:image_handle (Results 1 – 4 of 4) sorted by relevance
/trusted-firmware-a-3.6.0-3.5.0/drivers/partition/ |
D | partition.c | 49 static int load_mbr_header(uintptr_t image_handle, mbr_entry_t *mbr_entry) in load_mbr_header() argument 57 result = io_seek(image_handle, IO_SEEK_SET, MBR_OFFSET); in load_mbr_header() 62 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_header() 83 static int load_gpt_header(uintptr_t image_handle) in load_gpt_header() argument 90 result = io_seek(image_handle, IO_SEEK_SET, GPT_HEADER_OFFSET); in load_gpt_header() 94 result = io_read(image_handle, (uintptr_t)&header, in load_gpt_header() 129 static int load_mbr_entry(uintptr_t image_handle, mbr_entry_t *mbr_entry, in load_mbr_entry() argument 138 result = io_seek(image_handle, IO_SEEK_SET, MBR_OFFSET); in load_mbr_entry() 143 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_entry() 163 static int load_mbr_entries(uintptr_t image_handle) in load_mbr_entries() argument [all …]
|
/trusted-firmware-a-3.6.0-3.5.0/docs/resources/diagrams/plantuml/ |
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-3.6.0-3.5.0/drivers/fwu/ |
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-3.6.0-3.5.0/common/ |
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()
|