Home | History | Annotate | Download | only in UefiShellDriver1CommandsLib

Lines Matching defs:TheHandle

19   Function to dump LoadedImage info from TheHandle.

21 @param[in] TheHandle The handle to dump info from.
28 IN EFI_HANDLE TheHandle
33 TheString = GetProtocolInformationDump(TheHandle, &gEfiLoadedImageProtocolGuid, TRUE);
66 EFI_HANDLE TheHandle;
75 TheHandle = NULL;
109 TheHandle = ConvertHandleIndexToHandle((UINTN)Value);
112 if (EFI_ERROR(Status) || Param1 == NULL || TheHandle == NULL){
116 ASSERT(TheHandle != NULL);
118 DumpLoadedImageProtocolInfo(TheHandle);
122 Status = ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN(STR_UNLOAD_CONF), gShellDriver1HiiHandle, (UINTN)TheHandle);
126 Status = gBS->UnloadImage(TheHandle);
127 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_HANDLE_RESULT), gShellDriver1HiiHandle, L"Unload", (UINTN)TheHandle, Status);