Searched refs:LoadedImage (Results 1 - 25 of 52) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiDriverEntryPoint/
H A DDriverEntryPoint.c19 #include <Protocol/LoadedImage.h>
101 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage; local
124 (VOID **)&LoadedImage
127 LoadedImage->Unload = _DriverUnloadHandler;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/
H A DDriverEntryPoint.c20 #include <Protocol/LoadedImage.h>
165 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage; local
202 (VOID*)&LoadedImage
209 LoadedImage->DeviceHandle,
218 CompleteFilePath = SmmAppendDevicePath (ImageDevicePath, LoadedImage->FilePath);
224 Status = SmmBase->Register (SmmBase, CompleteFilePath, LoadedImage->ImageBase, 0, &Handle, FALSE);
233 (VOID **)&LoadedImage
236 LoadedImage->Unload = _DriverUnloadHandler;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciDriverOverride.c112 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage; local
116 Status = gBS->HandleProtocol (DriverImageHandle, &gEfiLoadedImageProtocolGuid, (VOID **) &LoadedImage);
133 ImageContext.Handle = LoadedImage->ImageBase;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/
H A DIpfBootSupport.c182 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage; local
192 (VOID *) &LoadedImage
196 LoadedImageBase = (EFI_PHYSICAL_ADDRESS) (UINTN) LoadedImage->ImageBase;
198 NumberOfPages = (UINTN) (DivU64x32(LoadedImage->ImageSize, EFI_PAGE_SIZE) + 1);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Guid/
H A DDebugImageInfoTable.h21 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DUefiLibInternal.h25 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DUefiLibInternal.h25 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellInstall1CommandsLib/
H A DUefiShellInstall1CommandsLib.h26 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/SocketDxe/
H A DSocket.h20 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/
H A DDrivers.c39 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage; local
49 (VOID**)&LoadedImage,
56 LoadedImage->DeviceHandle,
64 FinalPath = AppendDevicePath (ImageDevicePath, LoadedImage->FilePath);
66 LoadedImage->DeviceHandle,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/RuntimeDxe/
H A DRuntime.h21 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/
H A DIScsiDriver.h20 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCEntryLib/
H A DUefiShellCEntryLib.c18 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DUefiShellCommandLib.h24 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.h23 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/
H A Defi.h45 #include <ipxe/efi/Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Misc/
H A DDebugImageInfo.c162 @param LoadedImage pointer to the loaded image protocol for the image being
170 IN EFI_LOADED_IMAGE_PROTOCOL *LoadedImage,
238 Table[Index].NormalImage->LoadedImageProtocolInstance = LoadedImage;
168 CoreNewDebugImageInfoEntry( IN UINT32 ImageInfoType, IN EFI_LOADED_IMAGE_PROTOCOL *LoadedImage, IN EFI_HANDLE ImageHandle ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellParametersProtocol.h23 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel3CommandsLib/
H A DUefiShellLevel3CommandsLib.h26 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DDispatcher.c374 // Pull out just the file portion of the DevicePath for the LoadedImage FilePath
538 Status = gBS->AllocatePool (EfiBootServicesData, sizeof (EFI_LOADED_IMAGE_PROTOCOL), (VOID **)&DriverEntry->LoadedImage);
551 DriverEntry->LoadedImage->Revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
552 DriverEntry->LoadedImage->ParentHandle = gSmmCorePrivate->SmmIplImageHandle;
553 DriverEntry->LoadedImage->SystemTable = gST;
554 DriverEntry->LoadedImage->DeviceHandle = DeviceHandle;
559 Status = gBS->AllocatePool (EfiBootServicesData, GetDevicePathSize (FilePath), (VOID **)&DriverEntry->LoadedImage->FilePath);
567 CopyMem (DriverEntry->LoadedImage->FilePath, FilePath, GetDevicePathSize (FilePath));
569 DriverEntry->LoadedImage->ImageBase = (VOID *)(UINTN)DriverEntry->ImageBuffer;
570 DriverEntry->LoadedImage
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DInternalBdsLib.h24 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
H A DUpdateDriver.h22 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/Ia32/
H A DDebugSupport.h21 #include <Protocol/LoadedImage.h>
111 This is the callback that is written to the LoadedImage protocol instance
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/Ipf/
H A DPlDebugSupport.h21 #include <Protocol/LoadedImage.h>
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/PlatformDriOverrideDxe/
H A DInternalPlatDriOverrideDxe.h25 #include <Protocol/LoadedImage.h>

Completed in 45 milliseconds

123