Searched refs:ImageInfo (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/r3/haiku/
H A DrtProcInitExePath-haiku.cpp45 image_info ImageInfo; local
52 status = get_next_image_info(0, &Cookie, &ImageInfo);
55 int rc = rtPathFromNativeCopy(pszPath, MIN(cchPath, MAXPATHLEN), ImageInfo.name, NULL);
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeDeferImageLoadLib/
H A DDxeDeferImageLoadLib.h65 DEFERRED_IMAGE_INFO *ImageInfo; ///< deferred image item member in struct:__anon12680
H A DDxeDeferImageLoadLib.c605 mDeferredImage.ImageInfo = AllocatePool (sizeof (DEFERRED_IMAGE_INFO));
606 ASSERT (mDeferredImage.ImageInfo != NULL);
613 mDeferredImage.ImageInfo,
616 FreePool (mDeferredImage.ImageInfo);
617 mDeferredImage.ImageInfo = CurImageInfo;
624 CurImageInfo = &mDeferredImage.ImageInfo[mDeferredImage.Count - 1];
695 ReqImageInfo = &mDeferredImage.ImageInfo[ImageIndex];
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DFirmwareManagement.h223 @param[in, out] ImageInfoSize A pointer to the size, in bytes, of the ImageInfo buffer.
228 @param[in, out] ImageInfo A pointer to the buffer in which firmware places the current image(s)
248 @retval EFI_BUFFER_TOO_SMALL The ImageInfo buffer was too small. The current buffer size
259 IN OUT EFI_FIRMWARE_IMAGE_DESCRIPTOR *ImageInfo,
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DBdsMisc.c42 EFI_LOADED_IMAGE_PROTOCOL *ImageInfo; local
90 gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid, (VOID **) &ImageInfo);
96 if (ImageInfo->ImageCodeType != EfiBootServicesCode && ImageInfo->ImageCodeType != EfiRuntimeServicesCode) {
102 ImageInfo->LoadOptionsSize = Option->LoadOptionsSize;
103 ImageInfo->LoadOptions = Option->LoadOptions;
H A DBdsBoot.c654 EFI_LOADED_IMAGE_PROTOCOL *ImageInfo; local
952 Status = gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid, (VOID **) &ImageInfo);
956 ImageInfo->LoadOptionsSize = Option->LoadOptionsSize;
957 ImageInfo->LoadOptions = Option->LoadOptions;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/
H A Dbuild.py1091 ImageInfo = PeImageInfo(Module.Name, Module.Guid, Module.Arch, Module.OutputDir, Module.DebugDir, ImageClass)
1093 PeiModuleList[Module.MetaFile] = ImageInfo
1094 PeiSize += ImageInfo.Image.Size
1096 BtModuleList[Module.MetaFile] = ImageInfo
1097 BtSize += ImageInfo.Image.Size
1099 RtModuleList[Module.MetaFile] = ImageInfo
1101 if IsIpfPlatform and ImageInfo.Image.Size % 0x2000 != 0:
1102 ImageInfo.Image.Size = (ImageInfo.Image.Size / 0x2000 + 1) * 0x2000
1103 RtSize += ImageInfo
[all...]
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyProcess-win.cpp2408 SECTION_IMAGE_INFORMATION ImageInfo;
2409 rcNt = NtQueryInformationProcess(hProcess, ProcessImageInformation, &ImageInfo, sizeof(ImageInfo), NULL);
2419 if ( !(ImageInfo.DllCharacteristics & IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY))
2422 ImageInfo.DllCharacteristics);
2423 if (!(ImageInfo.DllCharacteristics & IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE))
2426 ImageInfo.DllCharacteristics);
2427 if (!(ImageInfo.DllCharacteristics & IMAGE_DLLCHARACTERISTICS_NX_COMPAT))
2430 ImageInfo.DllCharacteristics);
2432 if (pImage->fDllCharecteristics != ImageInfo
[all...]

Completed in 70 milliseconds