Home
last modified time | relevance | path

Searched refs:EFI_CALL (Results 1 – 7 of 7) sorted by relevance

/external/u-boot/lib/efi_driver/
Defi_uclass.c34 r = EFI_CALL(systab.boottime->open_protocol( in check_node_type()
68 ret = EFI_CALL(systab.boottime->open_protocol( in efi_uc_supported()
85 r = EFI_CALL(systab.boottime->close_protocol( in efi_uc_supported()
117 ret = EFI_CALL(systab.boottime->open_protocol( in efi_uc_start()
133 r = EFI_CALL(systab.boottime->close_protocol( in efi_uc_start()
163 ret = EFI_CALL(systab.boottime->close_protocol( in disconnect_child()
170 ret = EFI_CALL(systab.boottime->uninstall_protocol_interface( in disconnect_child()
216 ret = EFI_CALL(systab.boottime->open_protocol_information( in efi_uc_stop()
231 ret = EFI_CALL(systab.boottime->free_pool(entry_buffer)); in efi_uc_stop()
237 ret = EFI_CALL(systab.boottime->close_protocol( in efi_uc_stop()
Defi_block_device.c64 ret = EFI_CALL(io->read_blocks( in efi_bl_read()
93 ret = EFI_CALL(io->write_blocks( in efi_bl_write()
/external/u-boot/lib/efi_loader/
Defi_boottime.c1122 r = EFI_CALL(efi_disconnect_controller( in efi_disconnect_all_drivers()
1516 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, in efi_load_image_from_path()
1520 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, in efi_load_image_from_path()
1531 EFI_CALL(ret = f->read(f, &bs, *buffer)); in efi_load_image_from_path()
1535 EFI_CALL(f->close(f)); in efi_load_image_from_path()
1690 ret = EFI_CALL(entry(image_handle, &systab)); in efi_start_image()
1698 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL)); in efi_start_image()
2220 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL, in efi_locate_device_path()
2291 r = EFI_CALL(efi_install_protocol_interface( in efi_install_multiple_protocol_interfaces()
2308 EFI_CALL(efi_uninstall_protocol_interface(handle, protocol, in efi_install_multiple_protocol_interfaces()
[all …]
Defi_bootmgr.c80 EFI_CALL(ret = rs->get_variable(name, v, NULL, size, buf)); in get_var()
83 EFI_CALL(ret = rs->get_variable(name, v, NULL, size, buf)); in get_var()
Defi_file.c560 EFI_CALL(ret = v->open_volume(v, &f)); in efi_file_from_path()
579 EFI_CALL(ret = f->open(f, &f2, (s16 *)fdp->str, in efi_file_from_path()
586 EFI_CALL(f->close(f)); in efi_file_from_path()
Defi_device_path_to_text.c332 return EFI_CALL(efi_convert_device_path_to_text(dp, true, true)); in efi_dp_str()
/external/u-boot/include/
Defi_loader.h49 #define EFI_CALL(exp) ({ \ macro