Home
last modified time | relevance | path

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

12

/external/arm-trusted-firmware/drivers/partition/
Dpartition.c46 static int load_mbr_header(uintptr_t image_handle, mbr_entry_t *mbr_entry) in load_mbr_header() argument
54 result = io_seek(image_handle, IO_SEEK_SET, MBR_OFFSET); in load_mbr_header()
59 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_header()
80 static int load_gpt_header(uintptr_t image_handle) in load_gpt_header() argument
86 result = io_seek(image_handle, IO_SEEK_SET, GPT_HEADER_OFFSET); in load_gpt_header()
90 result = io_read(image_handle, (uintptr_t)&header, in load_gpt_header()
108 static int load_mbr_entry(uintptr_t image_handle, mbr_entry_t *mbr_entry, in load_mbr_entry() argument
117 result = io_seek(image_handle, IO_SEEK_SET, MBR_OFFSET); in load_mbr_entry()
122 result = io_read(image_handle, (uintptr_t)&mbr_sector, in load_mbr_entry()
142 static int load_mbr_entries(uintptr_t image_handle) in load_mbr_entries() argument
[all …]
/external/ImageMagick/coders/
Dheic.c140 struct heif_image_handle *image_handle,ExceptionInfo *exception) in ReadHEICColorProfile() argument
146 length=heif_image_handle_get_raw_color_profile_size(image_handle); in ReadHEICColorProfile()
164 error=heif_image_handle_get_raw_color_profile(image_handle, in ReadHEICColorProfile()
186 struct heif_image_handle *image_handle,ExceptionInfo *exception) in ReadHEICExifProfile() argument
194 count=heif_image_handle_get_list_of_metadata_block_IDs(image_handle,"Exif", in ReadHEICExifProfile()
207 exif_size=heif_image_handle_get_metadata_size(image_handle,exif_id); in ReadHEICExifProfile()
217 error=heif_image_handle_get_metadata(image_handle, in ReadHEICExifProfile()
285 *image_handle; in ReadHEICImageByID() local
292 error=heif_context_get_image_handle(heif_context,image_id,&image_handle); in ReadHEICImageByID()
295 if (ReadHEICColorProfile(image,image_handle,exception) == MagickFalse) in ReadHEICImageByID()
[all …]
/external/arm-trusted-firmware/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)
/external/u-boot/lib/efi_selftest/
Defi_selftest_loaded_image.c16 efi_handle_t image_handle; variable
28 image_handle = img_handle; in setup()
50 ret = boottime->protocols_per_handle(image_handle, &protocol_buffer, in execute()
80 ret = boottime->open_protocol(image_handle, &loaded_image_protocol_guid, in execute()
Defi_selftest_startimage_return.c22 static efi_handle_t image_handle; variable
87 image_handle = handle; in setup()
127 ret = boottime->load_image(false, image_handle, NULL, image, in execute()
Defi_selftest_exception.c42 static efi_handle_t image_handle; variable
107 image_handle = handle; in setup()
128 ret = boottime->load_image(false, image_handle, &dp.dp, image, in execute()
Defi_selftest_startimage_exit.c22 static efi_handle_t image_handle; variable
87 image_handle = handle; in setup()
130 ret = boottime->load_image(false, image_handle, NULL, image, in execute()
Defi_selftest_miniapp_exit.c27 (efi_handle_t image_handle, struct efi_system_table *systable) in check_loaded_image_protocol() argument
38 (image_handle, &loaded_image_protocol_guid, in check_loaded_image_protocol()
Defi_selftest.c227 efi_status_t EFIAPI efi_selftest(efi_handle_t image_handle, in efi_selftest() argument
238 handle = image_handle; in efi_selftest()
242 ret = boottime->handle_protocol(image_handle, &efi_guid_loaded_image, in efi_selftest()
/external/arm-trusted-firmware/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()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_eglimage.c139 st_get_egl_image(struct gl_context *ctx, GLeglImageOES image_handle, in st_get_egl_image() argument
152 if (!smapi->get_egl_image(smapi, (void *) image_handle, out)) { in st_get_egl_image()
204 GLeglImageOES image_handle) in st_egl_image_target_renderbuffer_storage() argument
210 if (st_get_egl_image(ctx, image_handle, PIPE_BIND_RENDER_TARGET, in st_egl_image_target_renderbuffer_storage()
349 GLeglImageOES image_handle) in st_egl_image_target_texture_2d() argument
354 if (!st_get_egl_image(ctx, image_handle, PIPE_BIND_SAMPLER_VIEW, in st_egl_image_target_texture_2d()
369 GLeglImageOES image_handle) in st_egl_image_target_tex_storage() argument
374 if (!st_get_egl_image(ctx, image_handle, PIPE_BIND_SAMPLER_VIEW, in st_egl_image_target_tex_storage()
/external/u-boot/lib/efi_loader/
Defi_boottime.c1849 efi_handle_t *image_handle) in efi_load_image() argument
1854 (struct efi_loaded_image_obj **)image_handle; in efi_load_image()
1859 file_path, source_buffer, source_size, image_handle); in efi_load_image()
1861 if (!image_handle || (!source_buffer && !file_path) || in efi_load_image()
1895 efi_delete_handle(*image_handle); in efi_load_image()
1896 *image_handle = NULL; in efi_load_image()
1942 static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle, in efi_exit_boot_services() argument
1948 EFI_ENTRY("%p, %zx", image_handle, map_key); in efi_exit_boot_services()
2876 efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle, in efi_start_image() argument
2881 (struct efi_loaded_image_obj *)image_handle; in efi_start_image()
[all …]
/external/u-boot/include/
Defi_loader.h263 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
419 efi_handle_t *image_handle);
421 efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
425 efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle);
608 efi_status_t EFIAPI efi_selftest(efi_handle_t image_handle,
Defi_api.h130 efi_status_t (EFIAPI *unload_image)(efi_handle_t image_handle);
131 efi_status_t (EFIAPI *exit_boot_services)(efi_handle_t image_handle,
368 efi_status_t (EFIAPI *unload)(efi_handle_t image_handle);
1581 efi_handle_t image_handle; member
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_tex_image.c609 GLeglImageOES image_handle, in intel_image_target_texture() argument
617 image = dri_screen->dri2.image->lookupEGLImage(dri_screen, image_handle, in intel_image_target_texture()
673 GLeglImageOES image_handle) in intel_image_target_texture_2d() argument
675 intel_image_target_texture(ctx, target, texObj, texImage, image_handle, in intel_image_target_texture_2d()
683 GLeglImageOES image_handle) in intel_image_target_tex_storage() argument
686 intel_image_target_texture(ctx, target, texObj, texImage, image_handle, in intel_image_target_tex_storage()
Dintel_fbo.c363 void *image_handle) in intel_image_target_renderbuffer_storage() argument
370 image = dri_screen->dri2.image->lookupEGLImage(dri_screen, image_handle, in intel_image_target_renderbuffer_storage()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_texture.h76 GLeglImageOES image_handle);
Dradeon_texture.c537 GLeglImageOES image_handle) in radeon_image_target_texture_2d() argument
546 image = screen->dri2.image->lookupEGLImage(screen, image_handle, in radeon_image_target_texture_2d()
Dradeon_fbo.c565 void *image_handle) in radeon_image_target_renderbuffer_storage() argument
573 image = screen->dri2.image->lookupEGLImage(screen, image_handle, in radeon_image_target_renderbuffer_storage()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_texture.h76 GLeglImageOES image_handle);
Dradeon_texture.c537 GLeglImageOES image_handle) in radeon_image_target_texture_2d() argument
546 image = screen->dri2.image->lookupEGLImage(screen, image_handle, in radeon_image_target_texture_2d()
Dradeon_fbo.c565 void *image_handle) in radeon_image_target_renderbuffer_storage() argument
573 image = screen->dri2.image->lookupEGLImage(screen, image_handle, in radeon_image_target_renderbuffer_storage()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_tex_image.c339 GLeglImageOES image_handle) in intel_image_target_texture_2d() argument
346 image = screen->dri2.image->lookupEGLImage(screen, image_handle, in intel_image_target_texture_2d()
Dintel_fbo.c240 void *image_handle) in intel_image_target_renderbuffer_storage() argument
248 image = screen->dri2.image->lookupEGLImage(screen, image_handle, in intel_image_target_renderbuffer_storage()
/external/u-boot/lib/efi_driver/
Defi_uclass.c279 bp->bp.image_handle = bp->bp.driver_binding_handle; in efi_add_driver()

12