HomeSort by relevance Sort by last modified time
    Searched refs:Pe32Data (Results 1 - 25 of 27) sorted by null

1 2

  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
PeCoffGetEntryPointLib.h 22 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
25 If Pe32Data is NULL, then ASSERT().
28 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
38 IN VOID *Pe32Data,
45 Returns the machine type from the PE/COFF image specified by Pe32Data.
46 If Pe32Data is NULL, then ASSERT().
48 @param Pe32Data The pointer to the PE/COFF image that is loaded in system
57 IN VOID *Pe32Data
64 Returns the PDB file name for the PE/COFF image specified by Pe32Data. If
65 the PE/COFF image specified by Pe32Data is not a valid, then NULL is
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGluePeCoffGetEntryPointLib.h 30 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
33 If Pe32Data is NULL, then ASSERT().
36 @param Pe32Data Pointer to the PE/COFF image that is loaded in system memory.
46 IN VOID *Pe32Data,
53 Returns the machine type from the PE/COFF image specified by Pe32Data.
54 If Pe32Data is NULL, then ASSERT().
56 @param Pe32Data Pointer to the PE/COFF image that is loaded in system
65 IN VOID *Pe32Data
72 Returns the PDB file name for the PE/COFF image specified by Pe32Data. If
73 the PE/COFF image specified by Pe32Data is not a valid, then NULL is
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/
CpuExceptionCommon.c 123 UINTN Pe32Data;
131 Pe32Data = CurrentEip & ~(mImageAlignSize - 1);
132 while (Pe32Data != 0) {
133 DosHdr = (EFI_IMAGE_DOS_HEADER *) Pe32Data;
138 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)(Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
142 if (((UINTN)Hdr.Pe32 > Pe32Data) && ((UINTN)Hdr.Pe32 < CurrentEip)) {
148 *EntryPoint = (UINTN)Pe32Data + (UINTN)(Hdr.Pe32->OptionalHeader.AddressOfEntryPoint & 0x0ffffffff);
156 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)Pe32Data;
163 *EntryPoint = (UINTN)Pe32Data + (UINTN)(Hdr.Te->AddressOfEntryPoint & 0x0ffffffff) + sizeof(EFI_TE_IMAGE_HEADER) - Hdr.Te->StrippedSize;
171 Pe32Data -= mImageAlignSize;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffGetEntryPointLib/
PeCoffGetEntryPoint.c 29 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
32 If Pe32Data is NULL, then ASSERT().
35 @param Pe32Data Pointer to the PE/COFF image that is loaded in system memory.
45 IN VOID *Pe32Data,
52 ASSERT (Pe32Data != NULL);
55 DosHeader = (EFI_IMAGE_DOS_HEADER *)Pe32Data;
60 Header.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)((UINTN) Pe32Data + (UINTN) ((DosHeader->e_lfanew) & 0x0ffff));
65 Header.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)Pe32Data;
72 *EntryPoint = (VOID *)((UINTN)Pe32Data + (UINTN)(Header.Pe32->OptionalHeader.AddressOfEntryPoint & 0x0ffffffff));
80 Returns the machine type from the PE/COFF image specified by Pe32Data.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/
PeCoffGetEntryPoint.c 29 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
32 If Pe32Data is NULL, then ASSERT().
35 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
45 IN VOID *Pe32Data,
52 ASSERT (Pe32Data != NULL);
55 DosHdr = (EFI_IMAGE_DOS_HEADER *)Pe32Data;
60 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)((UINTN) Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
65 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)Pe32Data;
73 *EntryPoint = (VOID *)((UINTN)Pe32Data + (UINTN)(Hdr.Te->AddressOfEntryPoint & 0x0ffffffff) + sizeof(EFI_TE_IMAGE_HEADER) - Hdr.Te->StrippedSize);
76 *EntryPoint = (VOID *)((UINTN)Pe32Data + (UINTN)(Hdr.Pe32->OptionalHeader.AddressOfEntryPoint & 0x0ffffffff));
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/
PeCoffGetEntryPoint.c 36 IN VOID *Pe32Data,
49 Pe32Data - Pointer to a PE/COFF Image
56 EFI_INVALID_PARAMETER if the EntryPoint could not be found from Pe32Data
67 ASSERT (Pe32Data != NULL);
79 Pe32Data,
99 @param Pe32Data Pointer to a PE/COFF header
107 IN VOID *Pe32Data
113 ASSERT (Pe32Data != NULL);
115 DosHdr = (EFI_IMAGE_DOS_HEADER *)Pe32Data;
120 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)((UINTN) Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/PeiEmuPeCoffGetEntryPointLib/
PeiEmuPeCoffGetEntryPointLib.c 30 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
33 If Pe32Data is NULL, then ASSERT().
36 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
46 IN VOID *Pe32Data,
67 return Thunk->PeCoffGetEntryPoint (Pe32Data, EntryPoint);
77 @param Pe32Data Pointer to a PE/COFF header
85 IN VOID *Pe32Data
91 ASSERT (Pe32Data != NULL);
93 DosHdr = (EFI_IMAGE_DOS_HEADER *)Pe32Data;
95 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)((UINTN) Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Nt32/Ppi/NtPeiLoadFile/
NtPeiLoadFile.h 38 VOID *Pe32Data,
50 Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
  /device/linaro/bootloader/edk2/Nt32Pkg/Include/Ppi/
NtPeiLoadFile.h 37 VOID *Pe32Data,
49 Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Image/
Image.c 333 @param Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
348 IN VOID *Pe32Data,
368 ImageContext.Handle = Pe32Data;
394 if (ImageContext.ImageAddress == (EFI_PHYSICAL_ADDRESS)(UINTN) Pe32Data) {
403 DEBUG ((EFI_D_INFO|EFI_D_LOAD, "The image at 0x%08x without reloc section can't be loaded into memory\n", (UINTN) Pe32Data));
409 ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)(UINTN) Pe32Data;
422 AlignImageSize = ImageContext.ImageSize + ((EFI_TE_IMAGE_HEADER *) Pe32Data)->StrippedSize - sizeof (EFI_TE_IMAGE_HEADER);
458 ((EFI_TE_IMAGE_HEADER *) Pe32Data)->StrippedSize -
469 ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)(UINTN) Pe32Data;
499 if (ImageContext.ImageAddress != (EFI_PHYSICAL_ADDRESS)(UINTN) Pe32Data) {
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Ppi/
EmuThunk.h 99 Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
112 VOID *Pe32Data,
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
PeCoffLib.h 132 IN VOID *Pe32Data
139 IN VOID *Pe32Data,
BasePeCoff.c     [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.h 66 VOID *Pe32Data, // TODO: add IN/OUT modifier to Pe32Data
79 Pe32Data - TODO: add argument description
280 IN VOID *Pe32Data,
293 Pe32Data - TODO: add argument description
308 OUT VOID **Pe32Data
319 Pe32Data - TODO: add argument description
FwVol.c 281 OUT VOID **Pe32Data
291 Pe32Data - Pointer to SEC PE32 iamge.
294 EFI_SUCCESS - Pe32Data is valid
308 Status = SecFfsFindSectionData (EFI_SECTION_PE32, FileHeader, Pe32Data);
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/
GdbStub.c 833 Returns the PDB file name for the PE/COFF image specified by Pe32Data. If
834 the PE/COFF image specified by Pe32Data is not a valid, then NULL is
835 returned. If the PE/COFF image specified by Pe32Data does not contain a
837 in the PE/COFF image specified by Pe32Data does not contain a PDB file name,
839 If Pe32Data is NULL, then ASSERT().
841 @param Pe32Data Pointer to the PE/COFF image that is loaded in system
845 @return The PDB file name for the PE/COFF image specified by Pe32Data or NULL
853 IN VOID *Pe32Data,
868 ASSERT (Pe32Data != NULL);
876 DosHdr = (EFI_IMAGE_DOS_HEADER *)Pe32Data;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
Host.h 153 VOID *Pe32Data,
176 IN VOID *Pe32Data,
185 OUT VOID **Pe32Data
285 IN VOID *Pe32Data,
Host.c 729 IN VOID *Pe32Data,
737 ImageContext.Handle = Pe32Data;
745 if (ImageContext.ImageAddress != (UINTN)Pe32Data) {
749 ImageContext.ImageAddress = (UINTN)Pe32Data;
763 ImageContext.PdbPointer = PeCoffLoaderGetPdbPointer (Pe32Data);
764 Status = PeCoffLoaderGetEntryPoint (Pe32Data, EntryPoint);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
MemoryProfileRecord.c 179 If Pe32Data is NULL, then ASSERT().
181 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
188 IN VOID *Pe32Data
195 ASSERT (Pe32Data != NULL);
197 DosHdr = (EFI_IMAGE_DOS_HEADER *) Pe32Data;
202 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *) ((UINTN) Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
207 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *) Pe32Data;
228 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
231 If Pe32Data is NULL, then ASSERT().
234 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
SmramProfileRecord.c 131 If Pe32Data is NULL, then ASSERT().
133 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
140 IN VOID *Pe32Data
147 ASSERT (Pe32Data != NULL);
149 DosHdr = (EFI_IMAGE_DOS_HEADER *) Pe32Data;
154 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *) ((UINTN) Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
159 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *) Pe32Data;
180 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
183 If Pe32Data is NULL, then ASSERT().
186 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
PiSmmCpuDxeSmm.c 154 UINTN Pe32Data;
163 Pe32Data = CallerIpAddress & ~(SIZE_4KB - 1);
164 while (Pe32Data != 0) {
165 DosHdr = (EFI_IMAGE_DOS_HEADER *) Pe32Data;
170 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)(Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
174 if (((UINTN)Hdr.Pe32 > Pe32Data) && ((UINTN)Hdr.Pe32 < CallerIpAddress)) {
187 Pe32Data -= SIZE_4KB;
193 if (Pe32Data != 0) {
194 PdbPointer = PeCoffLoaderGetPdbPointer ((VOID *) Pe32Data);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiLib/
PrePiLib.c 25 IN VOID *Pe32Data,
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuThunk.h 103 IN VOID *Pe32Data,
  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia32/
SearchForSecEntry.asm 174 ; *EntryPoint = (VOID *)((UINTN)Pe32Data +
186 ; *EntryPoint = (VOID *)((UINTN)Pe32Data +
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.c 203 UINTN Pe32Data;
211 Pe32Data = ((UINTN)mErrorMsgVersionAlert) & ~(AlignSize - 1);
212 while (Pe32Data != 0) {
213 DosHdr = (EFI_IMAGE_DOS_HEADER *) Pe32Data;
218 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)(Pe32Data + (UINTN) ((DosHdr->e_lfanew) & 0x0ffff));
222 if (((UINTN)Hdr.Pe32 > Pe32Data) && ((UINTN)Hdr.Pe32 < (UINTN)mErrorMsgVersionAlert)) {
234 Hdr.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)Pe32Data;
247 Pe32Data -= AlignSize;
250 ImageContext.ImageAddress = Pe32Data;
    [all...]

Completed in 860 milliseconds

1 2