Lines Matching refs:guid
485 if (!handler->guid) in efi_install_protocol_interface()
487 if (!guidcmp(handler->guid, protocol)) { in efi_install_protocol_interface()
496 if (handler->guid) in efi_install_protocol_interface()
499 handler->guid = protocol; in efi_install_protocol_interface()
554 const efi_guid_t *hprotocol = handler->guid; in efi_uninstall_protocol_interface()
562 handler->guid = 0; in efi_uninstall_protocol_interface()
604 const efi_guid_t *guid = efiobj->protocols[i].guid; in efi_search() local
605 if (guid && !guidcmp(guid, protocol)) in efi_search()
692 efi_status_t efi_install_configuration_table(const efi_guid_t *guid, void *table) in efi_install_configuration_table() argument
698 if (!guidcmp(guid, &efi_conf_table[i].guid)) { in efi_install_configuration_table()
715 memcpy(&efi_conf_table[i].guid, guid, sizeof(*guid)); in efi_install_configuration_table()
722 static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid, in efi_install_configuration_table_ext() argument
725 EFI_ENTRY("%p, %p", guid, table); in efi_install_configuration_table_ext()
726 return EFI_EXIT(efi_install_configuration_table(guid, table)); in efi_install_configuration_table_ext()
742 obj->protocols[0].guid = &efi_guid_device_path; in efi_setup_loaded_image()
749 obj->protocols[1].guid = &efi_guid_loaded_image; in efi_setup_loaded_image()
752 obj->protocols[2].guid = &efi_guid_console_control; in efi_setup_loaded_image()
755 obj->protocols[3].guid = &efi_guid_device_path_to_text_protocol; in efi_setup_loaded_image()
775 .guid = &efi_guid_loaded_image, in efi_load_image()
995 if (efiobj->protocols[i].guid) in efi_protocols_per_handle()
1009 if (efiobj->protocols[i].guid) { in efi_protocols_per_handle()
1011 efiobj->protocols[i].guid; in efi_protocols_per_handle()
1074 if (!handler->guid) in efi_locate_protocol()
1076 if (!guidcmp(handler->guid, protocol)) { in efi_locate_protocol()
1209 const efi_guid_t *hprotocol = handler->guid; in efi_open_protocol()