Home
last modified time | relevance | path

Searched refs:systab (Results 1 – 10 of 10) sorted by relevance

/external/u-boot/lib/efi_driver/
Defi_uclass.c36 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()
/external/u-boot/lib/efi_loader/
Defi_boottime.c1588 struct efi_configuration_table *this = &systab.tables[i]; in efi_remove_configuration_table()
1589 struct efi_configuration_table *next = &systab.tables[i + 1]; in efi_remove_configuration_table()
1590 struct efi_configuration_table *end = &systab.tables[systab.nr_tables]; in efi_remove_configuration_table()
1593 systab.nr_tables--; in efi_remove_configuration_table()
1617 for (i = 0; i < systab.nr_tables; i++) { in efi_install_configuration_table()
1618 if (!guidcmp(guid, &systab.tables[i].guid)) { in efi_install_configuration_table()
1620 systab.tables[i].table = table; in efi_install_configuration_table()
1635 memcpy(&systab.tables[i].guid, guid, sizeof(*guid)); in efi_install_configuration_table()
1636 systab.tables[i].table = table; in efi_install_configuration_table()
1637 systab.nr_tables = i + 1; in efi_install_configuration_table()
[all …]
Defi_runtime.c723 if ((map_start <= (uintptr_t)systab.tables) && in efi_set_virtual_address_map()
724 (map_end >= (uintptr_t)systab.tables)) { in efi_set_virtual_address_map()
725 char *ptr = (char *)systab.tables; in efi_set_virtual_address_map()
728 systab.tables = (struct efi_configuration_table *)ptr; in efi_set_virtual_address_map()
Defi_bootmgr.c228 bs = systab.boottime; in efi_bootmgr_load()
229 rs = systab.runtime; in efi_bootmgr_load()
Defi_console.c1118 systab.con_out_handle = console_output_handle; in efi_console_register()
1119 systab.stderr_handle = console_output_handle; in efi_console_register()
1129 systab.con_in_handle = console_input_handle; in efi_console_register()
/external/u-boot/cmd/
Dbootefi.c43 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()
189 for (i = 0; i < systab.nr_tables; i++) { in get_config_table()
190 if (!guidcmp(guid, &systab.tables[i].guid)) in get_config_table()
191 return systab.tables[i].table; in get_config_table()
540 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab)); in do_efi_selftest()
Defidebug.c18 #define BS systab.boottime
19 #define RT systab.runtime
/external/u-boot/lib/efi_selftest/
Defi_selftest.c228 struct efi_system_table *systab) in efi_selftest() argument
235 systable = systab; in efi_selftest()
Defi_selftest_fdt.c130 for (i = 0; i < systab.nr_tables; i++) { in efi_st_get_config_table()
/external/u-boot/include/
Defi_loader.h109 extern struct efi_system_table systab;
609 struct efi_system_table *systab);