Lines Matching refs:Handle
439 IN OUT EFI_HANDLE *Handle, in LibInstallProtocolInterfaces() argument
456 OldHandle = *Handle; in LibInstallProtocolInterfaces()
464 va_start (args, Handle); in LibInstallProtocolInterfaces()
484 …Status = uefi_call_wrapper(BS->InstallProtocolInterface, 4, Handle, Protocol, EFI_NATIVE_INTERFACE… in LibInstallProtocolInterfaces()
499 va_start (args, Handle); in LibInstallProtocolInterfaces()
504 uefi_call_wrapper(BS->UninstallProtocolInterface, 3, *Handle, Protocol, Interface); in LibInstallProtocolInterfaces()
509 *Handle = OldHandle; in LibInstallProtocolInterfaces()
524 IN EFI_HANDLE Handle, in LibUninstallProtocolInterfaces() argument
534 va_start (args, Handle); in LibUninstallProtocolInterfaces()
552 Status = uefi_call_wrapper(BS->UninstallProtocolInterface, 3, Handle, Protocol, Interface); in LibUninstallProtocolInterfaces()
554 DEBUG((D_ERROR, "LibUninstallProtocolInterfaces: failed %g, %r\n", Protocol, Handle)); in LibUninstallProtocolInterfaces()
563 IN OUT EFI_HANDLE *Handle, in LibReinstallProtocolInterfaces() argument
586 va_start (args, Handle); in LibReinstallProtocolInterfaces()
606 …Status = uefi_call_wrapper(BS->ReinstallProtocolInterface, 4, Handle, Protocol, OldInterface, NewI… in LibReinstallProtocolInterfaces()
621 va_start (args, Handle); in LibReinstallProtocolInterfaces()
628 …uefi_call_wrapper(BS->ReinstallProtocolInterface, 4, Handle, Protocol, NewInterface, OldInterface); in LibReinstallProtocolInterfaces()