/external/u-boot/cmd/ |
D | efidebug.c | 35 ret = EFI_CALL(BS->open_protocol(handle, &efi_guid_device_path, in efi_get_device_handle_info() 71 ret = EFI_CALL(BS->locate_handle_buffer(ALL_HANDLES, NULL, NULL, in do_efi_show_devices() 88 EFI_CALL(BS->free_pool(handles)); in do_efi_show_devices() 150 ret = EFI_CALL(BS->locate_handle_buffer( in do_efi_show_drivers() 172 EFI_CALL(BS->free_pool(driver_name)); in do_efi_show_drivers() 173 EFI_CALL(BS->free_pool(image_path_text)); in do_efi_show_drivers() 177 EFI_CALL(BS->free_pool(handles)); in do_efi_show_drivers() 299 ret = EFI_CALL(BS->locate_handle_buffer(ALL_HANDLES, NULL, NULL, in do_efi_show_handles() 311 ret = EFI_CALL(BS->protocols_per_handle(handles[i], &guid, in do_efi_show_handles() 333 EFI_CALL(BS->free_pool(handles)); in do_efi_show_handles() [all …]
|
D | bootefi.c | 43 ret = EFI_CALL(systab.boottime->open_protocol( in set_load_options() 61 EFI_CALL(systab.boottime->close_protocol(handle, in set_load_options() 71 return EFI_CALL(systab.boottime->close_protocol(handle, in set_load_options() 303 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data)); in do_bootefi_exec() 427 ret = EFI_CALL(efi_load_image(false, efi_root, in do_bootefi_image() 540 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab)); in do_efi_selftest()
|
D | nvedit_efi.c | 90 ret = EFI_CALL(efi_get_variable(name, guid, &attributes, &size, data)); in efi_dump_single_var() 96 ret = EFI_CALL(efi_get_variable(name, guid, &attributes, &size, in efi_dump_single_var() 227 ret = EFI_CALL(efi_get_next_variable_name(&size, var_name16, in efi_dump_var_all() 239 ret = EFI_CALL(efi_get_next_variable_name(&size, in efi_dump_var_all() 579 ret = EFI_CALL(efi_set_variable(var_name16, &guid, attributes, in do_env_set_efi()
|
/external/u-boot/lib/efi_driver/ |
D | efi_uclass.c | 36 r = EFI_CALL(systab.boottime->open_protocol( in check_node_type() 70 ret = EFI_CALL(systab.boottime->open_protocol( in efi_uc_supported() 87 r = EFI_CALL(systab.boottime->close_protocol( in efi_uc_supported() 119 ret = EFI_CALL(systab.boottime->open_protocol( in efi_uc_start() 135 r = EFI_CALL(systab.boottime->close_protocol( in efi_uc_start() 166 ret = EFI_CALL(systab.boottime->close_protocol( in disconnect_child() 173 ret = EFI_CALL(systab.boottime->uninstall_protocol_interface( in disconnect_child() 219 ret = EFI_CALL(systab.boottime->open_protocol_information( in efi_uc_stop() 234 ret = EFI_CALL(systab.boottime->free_pool(entry_buffer)); in efi_uc_stop() 239 ret = EFI_CALL(systab.boottime->close_protocol( in efi_uc_stop()
|
D | efi_block_device.c | 64 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/ |
D | efi_bootmgr.c | 126 EFI_CALL(ret = rs->get_variable(name, v, NULL, size, buf)); in get_var() 129 EFI_CALL(ret = rs->get_variable(name, v, NULL, size, buf)); in get_var() 178 ret = EFI_CALL(efi_load_image(true, efi_root, lo.file_path, in try_load_entry() 189 ret = EFI_CALL(efi_set_variable( in try_load_entry() 194 if (EFI_CALL(efi_unload_image(*handle)) in try_load_entry() 234 ret = EFI_CALL(efi_get_variable(L"BootNext", in efi_bootmgr_load() 243 ret = EFI_CALL(efi_set_variable( in efi_bootmgr_load()
|
D | efi_setup.c | 43 ret = EFI_CALL(efi_set_variable(L"PlatformLangCodes", in efi_init_platform_lang() 56 ret = EFI_CALL(efi_get_variable(L"PlatformLang", in efi_init_platform_lang() 73 ret = EFI_CALL(efi_set_variable(L"PlatformLang", in efi_init_platform_lang() 116 ret = EFI_CALL(efi_set_variable(L"OsIndicationsSupported", in efi_init_obj_list()
|
D | efi_boottime.c | 1274 r = EFI_CALL(efi_disconnect_controller( in efi_disconnect_all_drivers() 1788 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, in efi_load_image_from_path() 1796 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs, in efi_load_image_from_path() 1817 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr)); in efi_load_image_from_path() 1823 EFI_CALL(f->close(f)); in efi_load_image_from_path() 2429 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL, in efi_locate_device_path() 2510 r = EFI_CALL(efi_locate_device_path(protocol, &dp, in efi_install_multiple_protocol_interfaces() 2520 r = EFI_CALL(efi_install_protocol_interface( in efi_install_multiple_protocol_interfaces() 2537 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol, in efi_install_multiple_protocol_interfaces() 2600 EFI_CALL(efi_install_protocol_interface(&handle, protocol, in efi_uninstall_multiple_protocol_interfaces() [all …]
|
D | efi_root_node.c | 51 ret = EFI_CALL(efi_install_multiple_protocol_interfaces in efi_root_node_register()
|
D | efi_console.c | 388 EFI_CALL(efi_cout_clear_screen(this)); in efi_cout_set_mode() 400 EFI_CALL(efi_cout_clear_screen(this)); in efi_cout_reset() 713 EFI_CALL(item->function(&next_key)); in efi_cin_notify()
|
D | efi_file.c | 814 EFI_CALL(ret = v->open_volume(v, &f)); in efi_file_from_path() 841 EFI_CALL(ret = f->open(f, &f2, filename, in efi_file_from_path() 849 EFI_CALL(f->close(f)); in efi_file_from_path()
|
D | efi_device_path_to_text.c | 363 return EFI_CALL(efi_convert_device_path_to_text(dp, true, true)); in efi_dp_str()
|
D | efi_runtime.c | 110 return EFI_CALL(efi_set_variable(L"RuntimeServicesSupported", in efi_init_runtime_supported()
|
D | efi_net.c | 216 ret = EFI_CALL(efi_net_initialize(this, 0, 0)); in efi_net_reset()
|
/external/u-boot/include/ |
D | efi_loader.h | 69 #define EFI_CALL(exp) ({ \ macro
|