Home
last modified time | relevance | path

Searched refs:Info (Results 1 – 25 of 186) sorted by relevance

12345678

/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DGenC.py672 def DynExPcdTokenNumberMapping(Info, AutoGenH): argument
675 if Info.IsLibrary:
676 PcdList = Info.LibraryPcdList
678 PcdList = Info.ModulePcdList
766 def CreateModulePcdCode(Info, AutoGenC, AutoGenH, Pcd): argument
768 PcdTokenNumber = Info.PlatformInfo.PcdTokenNumber
798 ExtraData="[%s]" % str(Info))
807 ExtraData="[%s]" % str(Info))
811 ExtraData="[%s]" % str(Info))
822 if Info.IsLibrary:
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/MemoryInitPei/
DMemoryInitPeim.c46 EFI_MEMORY_TYPE_INFORMATION Info[10]; in BuildMemoryTypeInformationHob() local
48 Info[0].Type = EfiACPIReclaimMemory; in BuildMemoryTypeInformationHob()
49 Info[0].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiACPIReclaimMemory); in BuildMemoryTypeInformationHob()
50 Info[1].Type = EfiACPIMemoryNVS; in BuildMemoryTypeInformationHob()
51 Info[1].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiACPIMemoryNVS); in BuildMemoryTypeInformationHob()
52 Info[2].Type = EfiReservedMemoryType; in BuildMemoryTypeInformationHob()
53 Info[2].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiReservedMemoryType); in BuildMemoryTypeInformationHob()
54 Info[3].Type = EfiRuntimeServicesData; in BuildMemoryTypeInformationHob()
55 Info[3].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiRuntimeServicesData); in BuildMemoryTypeInformationHob()
56 Info[4].Type = EfiRuntimeServicesCode; in BuildMemoryTypeInformationHob()
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmShellCmdRunAxf/
DBootMonFsLoader.c49 BOOTMON_FS_FILE_INFO Info; in BootMonFsCheckFile() local
56 InfoSize = sizeof (Info); in BootMonFsCheckFile()
59 &InfoSize, &Info); in BootMonFsCheckFile()
65 if ((Info.Size == 0) || (Info.EntryPoint == 0) || (Info.RegionCount == 0) || in BootMonFsCheckFile()
66 (Info.RegionCount > BOOTMONFS_IMAGE_DESCRIPTION_REGION_MAX)) { in BootMonFsCheckFile()
73 for (Index = 0; Index < Info.RegionCount; Index++) { in BootMonFsCheckFile()
74 if ((Info.Region[Index].LoadAddress == 0) || (Info.Region[Index].Size == 0)) { in BootMonFsCheckFile()
113 BOOTMON_FS_FILE_INFO Info; in BootMonFsLoadFile() local
126 InfoSize = sizeof (Info); in BootMonFsLoadFile()
128 &InfoSize, &Info); in BootMonFsLoadFile()
[all …]
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/
DFor.c301 SHELL_FOR_INFO *Info; in ShellCommandRunFor() local
416 Info = AllocateZeroPool(NewSize); in ShellCommandRunFor()
417 ASSERT(Info != NULL); in ShellCommandRunFor()
418 Info->Signature = SHELL_FOR_INFO_SIGNATURE; in ShellCommandRunFor()
419 CopyMem(Info->Set, ArgSet, StrSize(ArgSet)); in ShellCommandRunFor()
421 …CopyMem(Info->Set+(StrSize(ArgSet)/sizeof(Info->Set[0])), gEfiShellParametersProtocol->Argv[1], Ne… in ShellCommandRunFor()
422 Info->ReplacementName = Info->Set+StrSize(ArgSet)/sizeof(Info->Set[0]); in ShellCommandRunFor()
423 Info->CurrentValue = (CHAR16*)Info->Set; in ShellCommandRunFor()
424 Info->Step = 0; in ShellCommandRunFor()
425 Info->Current = 0; in ShellCommandRunFor()
[all …]
/device/linaro/bootloader/edk2/OvmfPkg/QemuVideoDxe/
DGop.c24 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info in QemuVideoCompleteModeInfo() argument
27 Info->Version = 0; in QemuVideoCompleteModeInfo()
29 Info->PixelFormat = PixelBitMask; in QemuVideoCompleteModeInfo()
30 Info->PixelInformation.RedMask = PIXEL_RED_MASK; in QemuVideoCompleteModeInfo()
31 Info->PixelInformation.GreenMask = PIXEL_GREEN_MASK; in QemuVideoCompleteModeInfo()
32 Info->PixelInformation.BlueMask = PIXEL_BLUE_MASK; in QemuVideoCompleteModeInfo()
33 Info->PixelInformation.ReservedMask = 0; in QemuVideoCompleteModeInfo()
35 Info->PixelFormat = PixelBitMask; in QemuVideoCompleteModeInfo()
36 Info->PixelInformation.RedMask = PIXEL24_RED_MASK; in QemuVideoCompleteModeInfo()
37 Info->PixelInformation.GreenMask = PIXEL24_GREEN_MASK; in QemuVideoCompleteModeInfo()
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserProfileManagerDxe/
DUserProfileDelete.c32 EFI_USER_INFO *Info; in GetUserName() local
43 Info = AllocateZeroPool (MemSize); in GetUserName()
44 ASSERT (Info != NULL); in GetUserName()
68 Info, in GetUserName()
73 FreePool (Info); in GetUserName()
74 Info = AllocateZeroPool (MemSize); in GetUserName()
75 ASSERT (Info != NULL); in GetUserName()
81 Info, in GetUserName()
89 if (Info->InfoType == EFI_USER_INFO_NAME_RECORD) { in GetUserName()
90 NameLen = Info->InfoSize - sizeof (EFI_USER_INFO); in GetUserName()
[all …]
DUserProfileModify.c116 EFI_USER_INFO *Info; in GetAllUserInfo() local
148 Info = AllocateZeroPool (MemSize); in GetAllUserInfo()
149 if (Info == NULL) { in GetAllUserInfo()
170 Info, in GetAllUserInfo()
175 FreePool (Info); in GetAllUserInfo()
176 Info = AllocateZeroPool (MemSize); in GetAllUserInfo()
177 if (Info == NULL) { in GetAllUserInfo()
185 Info, in GetAllUserInfo()
194 DataLen = Info->InfoSize - sizeof (EFI_USER_INFO); in GetAllUserInfo()
195 switch (Info->InfoType) { in GetAllUserInfo()
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
DBootMonFsDir.c31 Instance->RootFile->Info->Attribute = EFI_FILE_READ_ONLY | EFI_FILE_DIRECTORY; in OpenBootMonFsOpenVolume()
216 EFI_FILE_INFO *Info; in GetFileInfo() local
219 ResultSize = SIZE_OF_EFI_FILE_INFO + StrSize (File->Info->FileName); in GetFileInfo()
226 Info = Buffer; in GetFileInfo()
228 CopyMem (Info, File->Info, ResultSize); in GetFileInfo()
230 Info->Size = ResultSize; in GetFileInfo()
247 BOOTMON_FS_FILE_INFO *Info; in GetBootMonFsFileInfo() local
260 Info = Buffer; in GetBootMonFsFileInfo()
263 ZeroMem (Info, ResultSize); in GetBootMonFsFileInfo()
266 Info->Size = ResultSize; in GetBootMonFsFileInfo()
[all …]
DBootMonFsOpenClose.c256 EFI_FILE_INFO *Info; in BootMonFsFlushFile() local
282 if (File->Info == NULL) { in BootMonFsFlushFile()
291 Info = File->Info; in BootMonFsFlushFile()
297 UnicodeStrToAsciiStr (Info->FileName, AsciiFileName); in BootMonFsFlushFile()
303 Info->FileSize + sizeof (HW_IMAGE_DESCRIPTION), in BootMonFsFlushFile()
415 Info->PhysicalSize = BootMonFsGetPhysicalSize (File); in BootMonFsFlushFile()
418 (Info->FileSize != File->HwDescription.Region[0].Size) ) { in BootMonFsFlushFile()
419 Status = WriteFileDescription (File, AsciiFileName, Info->FileSize, FileStart); in BootMonFsFlushFile()
456 if (File->Info == NULL) { in BootMonFsCloseFile()
463 FreePool (File->Info); in BootMonFsCloseFile()
[all …]
DBootMonFsReadWrite.c63 if (File->Info == NULL) { in BootMonFsReadFile()
76 if (File->Position >= File->Info->FileSize) { in BootMonFsReadFile()
80 if (File->Position > File->Info->FileSize) { in BootMonFsReadFile()
88 RemainingFileSize = File->Info->FileSize - File->Position; in BootMonFsReadFile()
146 if (File->Info == NULL) { in BootMonFsWriteFile()
175 if (File->Position > File->Info->FileSize) { in BootMonFsWriteFile()
176 File->Info->FileSize = File->Position; in BootMonFsWriteFile()
206 if (File->Info == NULL) { in BootMonFsSetPosition()
216 Position = File->Info->FileSize; in BootMonFsSetPosition()
248 if (File->Info == NULL) { in BootMonFsGetPosition()
/device/linaro/bootloader/edk2/ArmPkg/Filesystem/SemihostFs/Arm/
DSemihostFs.c84 EFI_FILE_INFO Info; member
143 RootFcb->Info.Attribute = EFI_FILE_READ_ONLY | EFI_FILE_DIRECTORY; in VolumeOpen()
283 FileFcb->Info.FileSize = Length; in FileOpen()
284 FileFcb->Info.PhysicalSize = Length; in FileOpen()
285 FileFcb->Info.Attribute = (OpenMode & EFI_FILE_MODE_CREATE) ? Attributes : 0; in FileOpen()
423 if (Fcb->Info.FileSize < Fcb->Info.PhysicalSize) { in FileClose()
424 TruncateFile (Fcb->FileName, Fcb->Info.FileSize); in FileClose()
523 if (Fcb->Position >= Fcb->Info.FileSize) { in FileRead()
525 if (Fcb->Position > Fcb->Info.FileSize) { in FileRead()
566 Return = SemihostFileSeek (Fcb->SemihostHandle, Fcb->Info.FileSize); in ExtendFile()
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/
DUserIdentifyManager.c174 IN OUT EFI_USER_INFO **Info, in FindUserInfo() argument
183 if (Info == NULL) { in FindUserInfo()
201 if (UserInfo == *Info) { in FindUserInfo()
218 *Info = (EFI_USER_INFO *) (User->ProfileInfo + InfoLen); in FindUserInfo()
223 *Info = NULL; in FindUserInfo()
227 if (*Info == NULL) { in FindUserInfo()
228 *Info = (EFI_USER_INFO *) User->ProfileInfo; in FindUserInfo()
233 *Info = NULL; in FindUserInfo()
266 IN OUT EFI_USER_INFO **Info, in FindUserInfoByType() argument
274 if (Info == NULL) { in FindUserInfoByType()
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/
DPwdCredentialProvider.c137 IN PASSWORD_INFO * Info OPTIONAL in ModifyTable()
146 if (Info == NULL) { in ModifyTable()
158 NewPasswordInfo = Info; in ModifyTable()
164 if (Info == NULL) { in ModifyTable()
172 NewPasswordInfo = Info; in ModifyTable()
432 OUT EFI_USER_INFO **Info in FindUserInfoByType() argument
444 if (Info == NULL) { in FindUserInfoByType()
501 *Info = UserInfo; in FindUserInfoByType()
1157 OUT EFI_USER_INFO *Info, in CredentialGetInfo() argument
1164 if ((This == NULL) || (InfoSize == NULL) || (Info == NULL)) { in CredentialGetInfo()
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/
DUsbCredentialProvider.c115 IN USB_INFO * Info OPTIONAL in ModifyTable()
123 if (Info == NULL) { in ModifyTable()
135 NewUsbInfo = Info; in ModifyTable()
141 if (Info == NULL) { in ModifyTable()
149 NewUsbInfo = Info; in ModifyTable()
520 OUT EFI_USER_INFO **Info in FindUserInfoByType() argument
532 if (Info == NULL) { in FindUserInfoByType()
589 *Info = UserInfo; in FindUserInfoByType()
1105 OUT EFI_USER_INFO *Info, in CredentialGetInfo() argument
1112 if ((This == NULL) || (InfoSize == NULL) || (Info == NULL)) { in CredentialGetInfo()
[all …]
/device/linaro/bootloader/edk2/EmulatorPkg/EmuGopDxe/
DGopScreen.c61 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION **Info in EmuGopQuerytMode() argument
68 if (Info == NULL || SizeOfInfo == NULL || (UINTN) ModeNumber >= This->Mode->MaxMode) { in EmuGopQuerytMode()
72 *Info = AllocatePool (sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION)); in EmuGopQuerytMode()
73 if (*Info == NULL) { in EmuGopQuerytMode()
79 (*Info)->Version = 0; in EmuGopQuerytMode()
80 (*Info)->HorizontalResolution = Private->ModeData[ModeNumber].HorizontalResolution; in EmuGopQuerytMode()
81 (*Info)->VerticalResolution = Private->ModeData[ModeNumber].VerticalResolution; in EmuGopQuerytMode()
82 (*Info)->PixelFormat = PixelBltOnly; in EmuGopQuerytMode()
83 (*Info)->PixelsPerScanLine = (*Info)->HorizontalResolution; in EmuGopQuerytMode()
122 Private->GraphicsOutput.Mode->Info->HorizontalResolution = ModeData->HorizontalResolution; in EmuGopSetMode()
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
DFloppyPeim.c641 IN OUT PEI_FLOPPY_DEVICE_INFO *Info in MotorOn() argument
655 DevPos = Info->DevPos; in MotorOn()
660 if (Info->MotorOn) { in MotorOn()
681 Info->MotorOn = FALSE; in MotorOn()
689 Info->MotorOn = TRUE; in MotorOn()
704 IN OUT PEI_FLOPPY_DEVICE_INFO *Info in MotorOff() argument
710 DevPos = Info->DevPos; in MotorOff()
712 if (!Info->MotorOn) { in MotorOff()
724 Info->MotorOn = FALSE; in MotorOff()
742 IN OUT PEI_FLOPPY_DEVICE_INFO *Info in Recalibrate() argument
[all …]
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
DLs.c180 TheNode->Info->FileSize, in PrintFileInformation()
181 TheNode->Info->PhysicalSize, in PrintFileInformation()
182 (TheNode->Info->Attribute & EFI_FILE_ARCHIVE) != 0?L"a":L"", in PrintFileInformation()
183 (TheNode->Info->Attribute & EFI_FILE_DIRECTORY) != 0?L"d":L"", in PrintFileInformation()
184 (TheNode->Info->Attribute & EFI_FILE_HIDDEN) != 0?L"h":L"", in PrintFileInformation()
185 (TheNode->Info->Attribute & EFI_FILE_READ_ONLY) != 0?L"r":L"", in PrintFileInformation()
186 (TheNode->Info->Attribute & EFI_FILE_SYSTEM) != 0?L"s":L"", in PrintFileInformation()
187 TheNode->Info->CreateTime.Hour, in PrintFileInformation()
188 TheNode->Info->CreateTime.Minute, in PrintFileInformation()
189 TheNode->Info->CreateTime.Second, in PrintFileInformation()
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
DIp6Input.c55 Assemble->Info = NULL; in Ip6CreateAssembleEntry()
123 IP6_CLIP_INFO *Info; in Ip6TrimPacket() local
126 Info = IP6_GET_CLIP_INFO (Packet); in Ip6TrimPacket()
128 ASSERT (Info->Start + Info->Length == Info->End); in Ip6TrimPacket()
129 ASSERT ((Info->Start < End) && (Start < Info->End)); in Ip6TrimPacket()
131 if (Info->Start < Start) { in Ip6TrimPacket()
132 Len = Start - Info->Start; in Ip6TrimPacket()
135 Info->Start = (UINT32) Start; in Ip6TrimPacket()
136 Info->Length -= (UINT32) Len; in Ip6TrimPacket()
139 if (End < Info->End) { in Ip6TrimPacket()
[all …]
/device/linaro/bootloader/edk2/OptionRomPkg/CirrusLogic5430Dxe/
DCirrusLogic5430GraphicsOutput.c29 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info in CirrusLogic5430CompleteModeInfo() argument
32 Info->Version = 0; in CirrusLogic5430CompleteModeInfo()
33 Info->PixelFormat = PixelBitMask; in CirrusLogic5430CompleteModeInfo()
34 Info->PixelInformation.RedMask = PIXEL_RED_MASK; in CirrusLogic5430CompleteModeInfo()
35 Info->PixelInformation.GreenMask = PIXEL_GREEN_MASK; in CirrusLogic5430CompleteModeInfo()
36 Info->PixelInformation.BlueMask = PIXEL_BLUE_MASK; in CirrusLogic5430CompleteModeInfo()
37 Info->PixelInformation.ReservedMask = 0; in CirrusLogic5430CompleteModeInfo()
38 Info->PixelsPerScanLine = Info->HorizontalResolution; in CirrusLogic5430CompleteModeInfo()
49 EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info; in CirrusLogic5430CompleteModeData() local
52 Info = Mode->Info; in CirrusLogic5430CompleteModeData()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
DIp4Input.c61 Assemble->Info = NULL; in Ip4CreateAssembleEntry()
158 IP4_CLIP_INFO *Info; in Ip4TrimPacket() local
161 Info = IP4_GET_CLIP_INFO (Packet); in Ip4TrimPacket()
163 ASSERT (Info->Start + Info->Length == Info->End); in Ip4TrimPacket()
164 ASSERT ((Info->Start < End) && (Start < Info->End)); in Ip4TrimPacket()
166 if (Info->Start < Start) { in Ip4TrimPacket()
167 Len = Start - Info->Start; in Ip4TrimPacket()
170 Info->Start = Start; in Ip4TrimPacket()
171 Info->Length -= Len; in Ip4TrimPacket()
174 if (End < Info->End) { in Ip4TrimPacket()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/
DConSplitterGraphics.c43 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION **Info in ConSplitterGraphicsOutputQueryMode() argument
51 if (This == NULL || Info == NULL || SizeOfInfo == NULL || ModeNumber >= This->Mode->MaxMode) { in ConSplitterGraphicsOutputQueryMode()
78 Status = GraphicsOutput->QueryMode (GraphicsOutput, (UINT32) ModeNumber, SizeOfInfo, Info); in ConSplitterGraphicsOutputQueryMode()
85 *Info = AllocatePool (sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION)); in ConSplitterGraphicsOutputQueryMode()
86 if (*Info == NULL) { in ConSplitterGraphicsOutputQueryMode()
90 CopyMem (*Info, &Private->GraphicsOutputModeBuffer[ModeNumber], *SizeOfInfo); in ConSplitterGraphicsOutputQueryMode()
126 EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info; in ConSplitterGraphicsOutputSetMode() local
150 … Status = GraphicsOutput->QueryMode (GraphicsOutput, (UINT32) NumberIndex, &SizeOfInfo, &Info); in ConSplitterGraphicsOutputSetMode()
154 …if ((Info->HorizontalResolution == Mode->HorizontalResolution) && (Info->VerticalResolution == Mod… in ConSplitterGraphicsOutputSetMode()
155 FreePool (Info); in ConSplitterGraphicsOutputSetMode()
[all …]
/device/linaro/bootloader/edk2/EmulatorPkg/CpuRuntimeDxe/
DMpService.c67 return (gMPSystem.ProcessorData[ProcessorNumber].Info.StatusFlag & PROCESSOR_AS_BSP_BIT) != 0; in IsBSP()
96 if ((Data->Info.StatusFlag & PROCESSOR_AS_BSP_BIT) != 0) { in GetNextBlockedNumber()
425 if ((ProcessorData->Info.StatusFlag & PROCESSOR_AS_BSP_BIT) == PROCESSOR_AS_BSP_BIT) { in CpuMpServicesStartupAllAps()
430 if ((ProcessorData->Info.StatusFlag & PROCESSOR_ENABLED_BIT) == 0) { in CpuMpServicesStartupAllAps()
464 if ((ProcessorData->Info.StatusFlag & PROCESSOR_AS_BSP_BIT) == PROCESSOR_AS_BSP_BIT) { in CpuMpServicesStartupAllAps()
469 if ((ProcessorData->Info.StatusFlag & PROCESSOR_ENABLED_BIT) == 0) { in CpuMpServicesStartupAllAps()
495 if ((ProcessorData->Info.StatusFlag & PROCESSOR_AS_BSP_BIT) == PROCESSOR_AS_BSP_BIT) { in CpuMpServicesStartupAllAps()
500 if ((ProcessorData->Info.StatusFlag & PROCESSOR_ENABLED_BIT) == 0) { in CpuMpServicesStartupAllAps()
534 if ((ProcessorData->Info.StatusFlag & PROCESSOR_AS_BSP_BIT) == PROCESSOR_AS_BSP_BIT) { in CpuMpServicesStartupAllAps()
539 if ((ProcessorData->Info.StatusFlag & PROCESSOR_ENABLED_BIT) == 0) { in CpuMpServicesStartupAllAps()
[all …]
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiHobLib/
DHob.c824 EFI_MEMORY_TYPE_INFORMATION Info[10]; in BuildMemoryTypeInformationHob() local
826 Info[0].Type = EfiACPIReclaimMemory; in BuildMemoryTypeInformationHob()
827 Info[0].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiACPIReclaimMemory); in BuildMemoryTypeInformationHob()
828 Info[1].Type = EfiACPIMemoryNVS; in BuildMemoryTypeInformationHob()
829 Info[1].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiACPIMemoryNVS); in BuildMemoryTypeInformationHob()
830 Info[2].Type = EfiReservedMemoryType; in BuildMemoryTypeInformationHob()
831 Info[2].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiReservedMemoryType); in BuildMemoryTypeInformationHob()
832 Info[3].Type = EfiRuntimeServicesData; in BuildMemoryTypeInformationHob()
833 Info[3].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiRuntimeServicesData); in BuildMemoryTypeInformationHob()
834 Info[4].Type = EfiRuntimeServicesCode; in BuildMemoryTypeInformationHob()
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/HdLcdArmVExpressLib/
DHdLcdArmVExpress.c210 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info in LcdPlatformQueryMode() argument
217 Info->Version = 0; in LcdPlatformQueryMode()
218 Info->HorizontalResolution = mResolutions[ModeNumber].HorizontalResolution; in LcdPlatformQueryMode()
219 Info->VerticalResolution = mResolutions[ModeNumber].VerticalResolution; in LcdPlatformQueryMode()
220 Info->PixelsPerScanLine = mResolutions[ModeNumber].HorizontalResolution; in LcdPlatformQueryMode()
224 Info->PixelFormat = PixelRedGreenBlueReserved8BitPerColor; in LcdPlatformQueryMode()
225 Info->PixelInformation.RedMask = LCD_24BPP_RED_MASK; in LcdPlatformQueryMode()
226 Info->PixelInformation.GreenMask = LCD_24BPP_GREEN_MASK; in LcdPlatformQueryMode()
227 Info->PixelInformation.BlueMask = LCD_24BPP_BLUE_MASK; in LcdPlatformQueryMode()
228 Info->PixelInformation.ReservedMask = LCD_24BPP_RESERVED_MASK; in LcdPlatformQueryMode()
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtGopDxe/
DWinNtGopScreen.c235 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION **Info in WinNtGopQuerytMode() argument
242 if (Info == NULL || SizeOfInfo == NULL || (UINTN) ModeNumber >= This->Mode->MaxMode) { in WinNtGopQuerytMode()
246 *Info = AllocatePool (sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION)); in WinNtGopQuerytMode()
247 if (*Info == NULL) { in WinNtGopQuerytMode()
253 (*Info)->Version = 0; in WinNtGopQuerytMode()
254 (*Info)->HorizontalResolution = Private->ModeData[ModeNumber].HorizontalResolution; in WinNtGopQuerytMode()
255 (*Info)->VerticalResolution = Private->ModeData[ModeNumber].VerticalResolution; in WinNtGopQuerytMode()
256 (*Info)->PixelFormat = PixelBltOnly; in WinNtGopQuerytMode()
257 (*Info)->PixelsPerScanLine = (*Info)->HorizontalResolution; in WinNtGopQuerytMode()
300 Private->GraphicsOutput.Mode->Info->HorizontalResolution = ModeData->HorizontalResolution; in WinNtGopSetMode()
[all …]

12345678