Home | History | Annotate | Download | only in UefiShellDriver1CommandsLib

Lines Matching refs:TheHandle

29   @param[in] TheHandle      The handle to get the device path for.

38 IN EFI_HANDLE TheHandle
50 TheHandle,
75 TheHandle,
95 @param[in] TheHandle The handle to the driver to test.
103 IN CONST EFI_HANDLE TheHandle
107 Status = gBS->OpenProtocol((EFI_HANDLE)TheHandle, &gEfiDriverConfigurationProtocolGuid, NULL, gImageHandle, NULL, EFI_OPEN_PROTOCOL_TEST_PROTOCOL);
117 @param[in] TheHandle The handle to the driver to test.
125 IN CONST EFI_HANDLE TheHandle
129 Status = gBS->OpenProtocol((EFI_HANDLE)TheHandle, &gEfiDriverDiagnostics2ProtocolGuid, NULL, gImageHandle, NULL, EFI_OPEN_PROTOCOL_TEST_PROTOCOL);
131 Status = gBS->OpenProtocol((EFI_HANDLE)TheHandle, &gEfiDriverDiagnosticsProtocolGuid, NULL, gImageHandle, NULL, EFI_OPEN_PROTOCOL_TEST_PROTOCOL);
140 Finds and returns the version of the driver specified by TheHandle.
142 @param[in] TheHandle The driver handle to get the version of.
150 IN CONST EFI_HANDLE TheHandle
159 Status = gBS->OpenProtocol((EFI_HANDLE)TheHandle, &gEfiDriverBindingProtocolGuid, (VOID**)&DriverBinding, gImageHandle, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
162 gBS->CloseProtocol(TheHandle, &gEfiDriverBindingProtocolGuid, gImageHandle, NULL);