Home
last modified time | relevance | path

Searched refs:image_handle (Results 1 – 4 of 4) sorted by relevance

/trusted-firmware-a-latest/drivers/partition/
Dpartition.c49 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()
96 static int load_gpt_header(uintptr_t image_handle, size_t header_offset, in load_gpt_header() argument
104 result = io_seek(image_handle, IO_SEEK_SET, header_offset); in load_gpt_header()
110 result = io_read(image_handle, (uintptr_t)&header, in load_gpt_header()
154 static int load_mbr_entry(uintptr_t image_handle, mbr_entry_t *mbr_entry, in load_mbr_entry() argument
163 result = io_seek(image_handle, IO_SEEK_SET, MBR_OFFSET); in load_mbr_entry()
168 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_entry()
192 static int load_mbr_entries(uintptr_t image_handle) in load_mbr_entries() argument
[all …]
/trusted-firmware-a-latest/docs/resources/diagrams/plantuml/
Dio_framework_usage_overview.puml36 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-latest/drivers/fwu/
Dfwu.c78 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-latest/common/
Dbl_common.c73 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()