HomeSort by relevance Sort by last modified time
    Searched refs:EntryPoint (Results 76 - 100 of 261) sorted by null

1 2 34 5 6 7 8 91011

  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Ppi/
EmuThunk.h 102 EntryPoint - The entry point of the relocated PE/COFF image
115 EFI_PHYSICAL_ADDRESS *EntryPoint
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Image/
Image.h 58 @param EntryPoint Image entry point for output.
91 OUT EFI_PHYSICAL_ADDRESS *EntryPoint OPTIONAL,
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
LoadPe32Image.h 43 @param EntryPoint The image entry point for output.
72 OUT EFI_PHYSICAL_ADDRESS *EntryPoint OPTIONAL,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/CapsulePei/Common/
CommonHeader.h 54 EFI_PHYSICAL_ADDRESS EntryPoint;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
DisablePaging32.asm 32 ; IN SWITCH_STACK_ENTRY_POINT EntryPoint,
54 jmp $ ; EntryPoint() should not return
DisablePaging32.S 30 # IN SWITCH_STACK_ENTRY_POINT EntryPoint,
52 jmp . # EntryPoint() should not return
  /device/generic/opengl-transport/host/commands/emugen/
ApiGen.h 21 #include "EntryPoint.h"
24 class ApiGen : private std::vector<EntryPoint> {
68 EntryPoint * findEntryByName(const std::string & name);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
PeCoffLib.h 54 PHYSICAL_ADDRESS EntryPoint;
140 OUT VOID **EntryPoint,
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772/
Ax88772.inf 24 ENTRY_POINT = EntryPoint
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/
Ax88772b.inf 24 ENTRY_POINT = EntryPoint
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/
AcpiPlatformDxe.inf 34 EntryPoint.c
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/
VirtioNet.inf 29 EntryPoint.c
  /device/linaro/bootloader/edk2/DuetPkg/EfiLdr/
EfiLoader.c 182 DxeIplImage.EntryPoint
236 DxeCoreImage.EntryPoint
256 if (DxeIplImage.EntryPoint != NULL) {
266 Handoff.DxeCoreEntryPoint = (VOID *)(UINTN)DxeCoreImage.EntryPoint;
268 PrintString ("Transfer to DxeIpl ...EntryPoint = %p\n", DxeIplImage.EntryPoint);
270 EfiMainEntrypoint = (EFI_MAIN_ENTRYPOINT) DxeIplImage.EntryPoint;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
BaseLibInternals.h 325 Transfers control to the function specified by EntryPoint using the
328 be NULL. The function EntryPoint must never return.
333 If EntryPoint is NULL, then ASSERT().
336 @param EntryPoint A pointer to function to call with the new stack.
337 @param Context1 A pointer to the context to pass into the EntryPoint
339 @param Context2 A pointer to the context to pass into the EntryPoint
341 @param NewStack A pointer to the new stack to use for the EntryPoint
349 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
687 transferred to the function specified by EntryPoint using the new stack
690 EntryPoint must never return.
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenMetaFileMisc.py 32 for ArchList, EntryPoint, UnloadImage, Constructor, Destructor, FFE, HelpStringList in ExternList:
34 if EntryPoint:
35 Statement = (u'%s ' % DT.TAB_INF_DEFINES_ENTRY_POINT).ljust(LeftOffset) + u'= %s' % EntryPoint
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/BootScriptSaveOnS3SaveStateThunk/
ScriptSave.c 442 VOID *EntryPoint;
444 EntryPoint = (VOID*)(UINTN)VA_ARG (Marker, EFI_PHYSICAL_ADDRESS);
448 EntryPoint
455 We need create thunk stub to convert PEI entrypoint (used in Framework version)
456 to DXE entrypoint (defined in PI spec).
470 VOID *EntryPoint;
473 EntryPoint = (VOID*)(UINTN)VA_ARG (Marker, EFI_PHYSICAL_ADDRESS);
478 Context = EntryPoint;
479 EntryPoint = (VOID *)(UINTN)FrameworkBootScriptDispatchStub;
483 EntryPoint,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffGetEntryPointLib/
PeCoffGetEntryPoint.c 30 point in EntryPoint. If the entry point could not be retrieved from the PE/COFF image, then
33 If EntryPoint is NULL, then ASSERT().
36 @param EntryPoint Pointer to entry point to the PE/COFF image to return.
38 @retval RETURN_SUCCESS EntryPoint was returned.
46 OUT VOID **EntryPoint
53 ASSERT (EntryPoint != NULL);
72 *EntryPoint = (VOID *)((UINTN)Pe32Data + (UINTN)(Header.Pe32->OptionalHeader.AddressOfEntryPoint & 0x0ffffffff));
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Image/
Image.c 336 @param EntryPoint - The entry point of the relocated PE/COFF image
351 OUT EFI_PHYSICAL_ADDRESS *EntryPoint
523 *EntryPoint = ImageContext.EntryPoint;
537 @param EntryPoint Pointer to entry point of specified image file for output.
554 OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
567 *EntryPoint = 0;
632 *EntryPoint = ImageEntryPoint;
657 // Print debug message: Loading PEIM at 0x12345678 EntryPoint=0x12345688 Driver.efi
660 DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Loading PEIM at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN)ImageAddress, (VOID *)(UINTN)*EntryPoint));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
DisablePaging64.S 31 # IN UINT32 EntryPoint,
69 mov %edx,%ebx # save EntryPoint to ebx, for rdmsr will overwrite edx
79 callq *%rbx # transfer control to EntryPoint
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/
ArchExceptionHandler.c 123 UINTN EntryPoint;
205 ImageBase = FindModuleImageBase (SystemContext.SystemContextIa32->Eip, &EntryPoint);
208 " (ImageBase=%08x, EntryPoint=%08x) !!!!\n",
210 EntryPoint
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
BaseLibInternals.h 310 Transfers control to the function specified by EntryPoint using the
313 be NULL. The function EntryPoint must never return.
318 If EntryPoint is NULL, then ASSERT().
321 @param EntryPoint A pointer to function to call with the new stack.
322 @param Context1 A pointer to the context to pass into the EntryPoint
324 @param Context2 A pointer to the context to pass into the EntryPoint
326 @param NewStack A pointer to the new stack to use for the EntryPoint
334 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
584 transferred to the function specified by EntryPoint using the new stack
587 EntryPoint must never return.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/BootScriptSaveDxe/
ScriptSave.c 334 VOID *EntryPoint;
336 EntryPoint = (VOID*)(UINTN)VA_ARG (Marker, EFI_PHYSICAL_ADDRESS);
337 return S3BootScriptSaveDispatch (EntryPoint);
388 VOID *EntryPoint;
391 EntryPoint = (VOID*)(UINTN)VA_ARG (Marker, EFI_PHYSICAL_ADDRESS);
394 return S3BootScriptSaveDispatch2 (EntryPoint, Context);
  /device/linaro/bootloader/edk2/ArmPkg/Library/DebugPeCoffExtraActionLib/
DebugPeCoffExtraActionLib.c 99 DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Loading driver at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN) ImageContext->ImageAddress, FUNCTION_ENTRY_POINT (ImageContext->EntryPoint)));
102 DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Loading driver at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN) ImageContext->ImageAddress, FUNCTION_ENTRY_POINT (ImageContext->EntryPoint)));
  /device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/FspWrapperNotifyDxe/
LoadBelow4G.c 141 DEBUG ((DEBUG_INFO, "Loading driver at 0x%08x EntryPoint=0x%08x\n", (UINTN)ImageContext.ImageAddress, (UINTN)ImageContext.EntryPoint));
142 Status = ((EFI_IMAGE_ENTRY_POINT)(UINTN)(ImageContext.EntryPoint)) (NewImageHandle, gST);
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspNotifyDxe/
LoadBelow4G.c 141 DEBUG ((EFI_D_INFO, "Loading driver at 0x%08x EntryPoint=0x%08x\n", (UINTN)ImageContext.ImageAddress, (UINTN)ImageContext.EntryPoint));
142 Status = ((EFI_IMAGE_ENTRY_POINT)(UINTN)(ImageContext.EntryPoint)) (NewImageHandle, gST);

Completed in 691 milliseconds

1 2 34 5 6 7 8 91011