Home
last modified time | relevance | path

Searched refs:GraphicsOutput (Results 1 – 25 of 56) sorted by relevance

123

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/
DConSplitterGraphics.c47 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in ConSplitterGraphicsOutputQueryMode() local
60 GraphicsOutput = NULL; in ConSplitterGraphicsOutputQueryMode()
67 GraphicsOutput = Private->TextOutList[Index].GraphicsOutput; in ConSplitterGraphicsOutputQueryMode()
68 if (GraphicsOutput != NULL) { in ConSplitterGraphicsOutputQueryMode()
74 if (GraphicsOutput != NULL) { in ConSplitterGraphicsOutputQueryMode()
78 Status = GraphicsOutput->QueryMode (GraphicsOutput, (UINT32) ModeNumber, SizeOfInfo, Info); in ConSplitterGraphicsOutputQueryMode()
122 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in ConSplitterGraphicsOutputSetMode() local
137 GraphicsOutput = NULL; in ConSplitterGraphicsOutputSetMode()
143 GraphicsOutput = Private->TextOutList[Index].GraphicsOutput; in ConSplitterGraphicsOutputSetMode()
144 if (GraphicsOutput != NULL) { in ConSplitterGraphicsOutputSetMode()
[all …]
DConSplitter.c627 …CopyMem (&ConOutPrivate->GraphicsOutput, &mGraphicsOutputProtocolTemplate, sizeof (EFI_GRAPHICS_OU… in ConSplitterTextOutConstructor()
681 …if ((ConOutPrivate->GraphicsOutput.Mode = AllocateZeroPool (sizeof (EFI_GRAPHICS_OUTPUT_PROTOCOL_M… in ConSplitterTextOutConstructor()
684 …if ((ConOutPrivate->GraphicsOutput.Mode->Info = AllocateZeroPool (sizeof (EFI_GRAPHICS_OUTPUT_MODE… in ConSplitterTextOutConstructor()
700 …CopyMem (ConOutPrivate->GraphicsOutput.Mode->Info, Info, sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMAT… in ConSplitterTextOutConstructor()
701 ConOutPrivate->GraphicsOutput.Mode->SizeOfInfo = sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION); in ConSplitterTextOutConstructor()
707 ConOutPrivate->GraphicsOutput.Mode->FrameBufferBase = (EFI_PHYSICAL_ADDRESS) (UINTN) NULL; in ConSplitterTextOutConstructor()
708 ConOutPrivate->GraphicsOutput.Mode->FrameBufferSize = 0; in ConSplitterTextOutConstructor()
710 ConOutPrivate->GraphicsOutput.Mode->MaxMode = 1; in ConSplitterTextOutConstructor()
714 ConOutPrivate->GraphicsOutput.Mode->Mode = 0xffff; in ConSplitterTextOutConstructor()
715 ConOutPrivate->GraphicsOutput.SetMode (&ConOutPrivate->GraphicsOutput, 0); in ConSplitterTextOutConstructor()
[all …]
/device/linaro/bootloader/edk2/EmulatorPkg/EmuGopDxe/
DGopScreen.c122 Private->GraphicsOutput.Mode->Info->HorizontalResolution = ModeData->HorizontalResolution; in EmuGopSetMode()
123 Private->GraphicsOutput.Mode->Info->VerticalResolution = ModeData->VerticalResolution; in EmuGopSetMode()
124 Private->GraphicsOutput.Mode->Info->PixelsPerScanLine = ModeData->HorizontalResolution; in EmuGopSetMode()
325 Private->GraphicsOutput.QueryMode = EmuGopQuerytMode; in EmuGopConstructor()
326 Private->GraphicsOutput.SetMode = EmuGopSetMode; in EmuGopConstructor()
327 Private->GraphicsOutput.Blt = EmuGopBlt; in EmuGopConstructor()
332 Private->GraphicsOutput.Mode = AllocatePool (sizeof (EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE)); in EmuGopConstructor()
333 if (Private->GraphicsOutput.Mode == NULL) { in EmuGopConstructor()
336 Private->GraphicsOutput.Mode->Info = AllocatePool (sizeof (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION)); in EmuGopConstructor()
337 if (Private->GraphicsOutput.Mode->Info == NULL) { in EmuGopConstructor()
[all …]
DGopDriver.c248 &gEfiGraphicsOutputProtocolGuid, &Private->GraphicsOutput, in EmuGopDriverBindingStart()
324 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in EmuGopDriverBindingStop() local
331 (VOID **)&GraphicsOutput, in EmuGopDriverBindingStop()
346 Private = GOP_PRIVATE_DATA_FROM_THIS (GraphicsOutput); in EmuGopDriverBindingStop()
353 &gEfiGraphicsOutputProtocolGuid, &Private->GraphicsOutput, in EmuGopDriverBindingStop()
DComponentName.c205 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in EmuGopComponentNameGetControllerName() local
232 (VOID **)&GraphicsOutput, in EmuGopComponentNameGetControllerName()
241 Private = GOP_PRIVATE_DATA_FROM_THIS (GraphicsOutput); in EmuGopComponentNameGetControllerName()
/device/linaro/bootloader/edk2/OvmfPkg/QemuVideoDxe/
DGop.c299 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in QemuVideoGraphicsOutputConstructor() local
302 GraphicsOutput = &Private->GraphicsOutput; in QemuVideoGraphicsOutputConstructor()
303 GraphicsOutput->QueryMode = QemuVideoGraphicsOutputQueryMode; in QemuVideoGraphicsOutputConstructor()
304 GraphicsOutput->SetMode = QemuVideoGraphicsOutputSetMode; in QemuVideoGraphicsOutputConstructor()
305 GraphicsOutput->Blt = QemuVideoGraphicsOutputBlt; in QemuVideoGraphicsOutputConstructor()
313 (VOID **) &Private->GraphicsOutput.Mode in QemuVideoGraphicsOutputConstructor()
322 (VOID **) &Private->GraphicsOutput.Mode->Info in QemuVideoGraphicsOutputConstructor()
327 Private->GraphicsOutput.Mode->MaxMode = (UINT32) Private->MaxMode; in QemuVideoGraphicsOutputConstructor()
328 Private->GraphicsOutput.Mode->Mode = GRAPHICS_OUTPUT_INVALIDE_MODE_NUMBER; in QemuVideoGraphicsOutputConstructor()
334 Status = GraphicsOutput->SetMode (GraphicsOutput, 0); in QemuVideoGraphicsOutputConstructor()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootLogoLib/
DBootLogoLib.c70 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in BootLogoEnableLogo() local
88 …HandleProtocol (gST->ConsoleOutHandle, &gEfiGraphicsOutputProtocolGuid, (VOID **) &GraphicsOutput); in BootLogoEnableLogo()
90 GraphicsOutput = NULL; in BootLogoEnableLogo()
125 if (GraphicsOutput != NULL) { in BootLogoEnableLogo()
126 SizeOfX = GraphicsOutput->Mode->Info->HorizontalResolution; in BootLogoEnableLogo()
127 SizeOfY = GraphicsOutput->Mode->Info->VerticalResolution; in BootLogoEnableLogo()
251 if (GraphicsOutput != NULL) { in BootLogoEnableLogo()
252 Status = GraphicsOutput->Blt ( in BootLogoEnableLogo()
253 GraphicsOutput, in BootLogoEnableLogo()
357 if (GraphicsOutput != NULL) { in BootLogoEnableLogo()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/
DGraphicsConsole.c130 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in GraphicsConsoleControllerDriverSupported() local
134 GraphicsOutput = NULL; in GraphicsConsoleControllerDriverSupported()
142 (VOID **) &GraphicsOutput, in GraphicsConsoleControllerDriverSupported()
198 if (GraphicsOutput != NULL) { in GraphicsConsoleControllerDriverSupported()
412 (VOID **) &Private->GraphicsOutput, in GraphicsConsoleControllerDriverStart()
436 if (Private->GraphicsOutput != NULL) { in GraphicsConsoleControllerDriverStart()
446 MaxMode = Private->GraphicsOutput->Mode->MaxMode; in GraphicsConsoleControllerDriverStart()
449 Status = Private->GraphicsOutput->QueryMode ( in GraphicsConsoleControllerDriverStart()
450 Private->GraphicsOutput, in GraphicsConsoleControllerDriverStart()
474 Private->GraphicsOutput, in GraphicsConsoleControllerDriverStart()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/
DPrint.c90 IN EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput, in _IPrint() argument
164 if (GraphicsOutput != NULL) { in _IPrint()
165 HorizontalResolution = GraphicsOutput->Mode->Info->HorizontalResolution; in _IPrint()
166 VerticalResolution = GraphicsOutput->Mode->Info->VerticalResolution; in _IPrint()
175 ASSERT (GraphicsOutput != NULL); in _IPrint()
223 Blt->Image.Screen = GraphicsOutput; in _IPrint()
305 if (GraphicsOutput != NULL) { in _IPrint()
306 Status = GraphicsOutput->Blt ( in _IPrint()
307 GraphicsOutput, in _IPrint()
388 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in PrintXY() local
[all …]
DGraphics.c463 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in EnableQuietBootEx() local
474 …HandleProtocol (gST->ConsoleOutHandle, &gEfiGraphicsOutputProtocolGuid, (VOID **) &GraphicsOutput); in EnableQuietBootEx()
476 GraphicsOutput = NULL; in EnableQuietBootEx()
491 if (GraphicsOutput != NULL) { in EnableQuietBootEx()
492 SizeOfX = GraphicsOutput->Mode->Info->HorizontalResolution; in EnableQuietBootEx()
493 SizeOfY = GraphicsOutput->Mode->Info->VerticalResolution; in EnableQuietBootEx()
612 if (GraphicsOutput != NULL) { in EnableQuietBootEx()
613 Status = GraphicsOutput->Blt ( in EnableQuietBootEx()
614 GraphicsOutput, in EnableQuietBootEx()
/device/linaro/bootloader/edk2/OptionRomPkg/CirrusLogic5430Dxe/
DCirrusLogic5430GraphicsOutput.c490 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in CirrusLogic5430GraphicsOutputConstructor() local
493 GraphicsOutput = &Private->GraphicsOutput; in CirrusLogic5430GraphicsOutputConstructor()
494 GraphicsOutput->QueryMode = CirrusLogic5430GraphicsOutputQueryMode; in CirrusLogic5430GraphicsOutputConstructor()
495 GraphicsOutput->SetMode = CirrusLogic5430GraphicsOutputSetMode; in CirrusLogic5430GraphicsOutputConstructor()
496 GraphicsOutput->Blt = CirrusLogic5430GraphicsOutputBlt; in CirrusLogic5430GraphicsOutputConstructor()
504 (VOID **) &Private->GraphicsOutput.Mode in CirrusLogic5430GraphicsOutputConstructor()
512 (VOID **) &Private->GraphicsOutput.Mode->Info in CirrusLogic5430GraphicsOutputConstructor()
517 Private->GraphicsOutput.Mode->MaxMode = (UINT32) Private->MaxMode; in CirrusLogic5430GraphicsOutputConstructor()
518 Private->GraphicsOutput.Mode->Mode = GRAPHICS_OUTPUT_INVALIDE_MODE_NUMBER; in CirrusLogic5430GraphicsOutputConstructor()
525 GraphicsOutput->SetMode (GraphicsOutput, 0); in CirrusLogic5430GraphicsOutputConstructor()
[all …]
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtGopDxe/
DWinNtGopScreen.c300 Private->GraphicsOutput.Mode->Info->HorizontalResolution = ModeData->HorizontalResolution; in WinNtGopSetMode()
301 Private->GraphicsOutput.Mode->Info->VerticalResolution = ModeData->VerticalResolution; in WinNtGopSetMode()
302 Private->GraphicsOutput.Mode->Info->PixelsPerScanLine = ModeData->HorizontalResolution; in WinNtGopSetMode()
688 …Size = Private->GraphicsOutput.Mode->Info->HorizontalResolution * Private->GraphicsOutput.Mode->In… in WinNtGopThreadWindowProc()
703 …Private->VirtualScreenInfo->bV4Width = Private->GraphicsOutput.Mode->Info->HorizontalReso… in WinNtGopThreadWindowProc()
704 …Private->VirtualScreenInfo->bV4Height = Private->GraphicsOutput.Mode->Info->VerticalResolu… in WinNtGopThreadWindowProc()
726 Private->GraphicsOutput.Mode->Info->HorizontalResolution, // Width in WinNtGopThreadWindowProc()
727 Private->GraphicsOutput.Mode->Info->VerticalResolution, // Height in WinNtGopThreadWindowProc()
731 … Private->GraphicsOutput.Mode->Info->VerticalResolution, // Number of scan lines in WinNtGopThreadWindowProc()
923 Rect.bottom = Private->GraphicsOutput.Mode->Info->VerticalResolution; in WinNtGopThreadWinMain()
[all …]
DWinNtGopDriver.c243 &Private->GraphicsOutput, in WinNtGopDriverBindingStart()
305 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in WinNtGopDriverBindingStop() local
312 (VOID **) &GraphicsOutput, in WinNtGopDriverBindingStop()
327 Private = GOP_PRIVATE_DATA_FROM_THIS (GraphicsOutput); in WinNtGopDriverBindingStop()
335 &Private->GraphicsOutput, in WinNtGopDriverBindingStop()
DComponentName.c339 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in WinNtGopComponentNameGetControllerName() local
365 (VOID **) &GraphicsOutput, in WinNtGopComponentNameGetControllerName()
374 Private = GOP_PRIVATE_DATA_FROM_THIS (GraphicsOutput); in WinNtGopComponentNameGetControllerName()
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/
DMemoryTest.c47 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in PlatformBdsShowProgress() local
69 (VOID **) &GraphicsOutput in PlatformBdsShowProgress()
72 GraphicsOutput = NULL; in PlatformBdsShowProgress()
86 if (GraphicsOutput != NULL) { in PlatformBdsShowProgress()
87 SizeOfX = GraphicsOutput->Mode->Info->HorizontalResolution; in PlatformBdsShowProgress()
88 SizeOfY = GraphicsOutput->Mode->Info->VerticalResolution; in PlatformBdsShowProgress()
118 if (GraphicsOutput != NULL) { in PlatformBdsShowProgress()
119 Status = GraphicsOutput->Blt ( in PlatformBdsShowProgress()
120 GraphicsOutput, in PlatformBdsShowProgress()
153 if (GraphicsOutput != NULL) { in PlatformBdsShowProgress()
[all …]
DFrontPage.c993 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in PlatformBdsEnterFrontPage() local
1001 GraphicsOutput = NULL; in PlatformBdsEnterFrontPage()
1020 (VOID**)&GraphicsOutput in PlatformBdsEnterFrontPage()
1023 GraphicsOutput = NULL; in PlatformBdsEnterFrontPage()
1035 if (GraphicsOutput != NULL) { in PlatformBdsEnterFrontPage()
1039 mBootHorizontalResolution = GraphicsOutput->Mode->Info->HorizontalResolution; in PlatformBdsEnterFrontPage()
1040 mBootVerticalResolution = GraphicsOutput->Mode->Info->VerticalResolution; in PlatformBdsEnterFrontPage()
1280 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in BdsSetConsoleMode() local
1307 (VOID**)&GraphicsOutput in BdsSetConsoleMode()
1310 GraphicsOutput = NULL; in BdsSetConsoleMode()
[all …]
/device/linaro/bootloader/edk2/CorebootPayloadPkg/FbGop/
DFbGop.c489 FbGopPrivate->GraphicsOutput.QueryMode = FbGopGraphicsOutputQueryMode; in FbGopChildHandleInstall()
490 FbGopPrivate->GraphicsOutput.SetMode = FbGopGraphicsOutputSetMode; in FbGopChildHandleInstall()
496 FbGopPrivate->GraphicsOutput.Mode = (EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE *) AllocatePool ( in FbGopChildHandleInstall()
499 if (NULL == FbGopPrivate->GraphicsOutput.Mode) { in FbGopChildHandleInstall()
504 FbGopPrivate->GraphicsOutput.Mode->Info = (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *) AllocatePool ( in FbGopChildHandleInstall()
507 if (NULL == FbGopPrivate->GraphicsOutput.Mode->Info) { in FbGopChildHandleInstall()
570 &FbGopPrivate->GraphicsOutput, in FbGopChildHandleInstall()
626 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in FbGopChildHandleUninstall() local
631 GraphicsOutput = NULL; in FbGopChildHandleUninstall()
638 (VOID **) &GraphicsOutput, in FbGopChildHandleUninstall()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
DSetupBrowser.c71 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in PlatformBdsShowProgress() local
93 (VOID **) &GraphicsOutput in PlatformBdsShowProgress()
96 GraphicsOutput = NULL; in PlatformBdsShowProgress()
104 if (EFI_ERROR (Status) || (GraphicsOutput == NULL && UgaDraw == NULL)) { in PlatformBdsShowProgress()
110 if (GraphicsOutput != NULL) { in PlatformBdsShowProgress()
111 SizeOfX = GraphicsOutput->Mode->Info->HorizontalResolution; in PlatformBdsShowProgress()
112 SizeOfY = GraphicsOutput->Mode->Info->VerticalResolution; in PlatformBdsShowProgress()
140 if (GraphicsOutput != NULL) { in PlatformBdsShowProgress()
141 Status = GraphicsOutput->Blt ( in PlatformBdsShowProgress()
142 GraphicsOutput, in PlatformBdsShowProgress()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/
DPrint.c115 IN EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput, in _IPrint() argument
189 if (GraphicsOutput != NULL) { in _IPrint()
190 HorizontalResolution = GraphicsOutput->Mode->Info->HorizontalResolution; in _IPrint()
191 VerticalResolution = GraphicsOutput->Mode->Info->VerticalResolution; in _IPrint()
200 ASSERT (GraphicsOutput != NULL); in _IPrint()
249 Blt->Image.Screen = GraphicsOutput; in _IPrint()
331 if (GraphicsOutput != NULL) { in _IPrint()
332 Status = GraphicsOutput->Blt ( in _IPrint()
333 GraphicsOutput, in _IPrint()
414 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in PrintXY() local
[all …]
DGraphics.c464 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in EnableQuietBootEx() local
475 …->HandleProtocol (gST->ConsoleOutHandle, &gEfiGraphicsOutputProtocolGuid, (VOID**)&GraphicsOutput); in EnableQuietBootEx()
477 GraphicsOutput = NULL; in EnableQuietBootEx()
492 if (GraphicsOutput != NULL) { in EnableQuietBootEx()
493 SizeOfX = GraphicsOutput->Mode->Info->HorizontalResolution; in EnableQuietBootEx()
494 SizeOfY = GraphicsOutput->Mode->Info->VerticalResolution; in EnableQuietBootEx()
613 if (GraphicsOutput != NULL) { in EnableQuietBootEx()
614 Status = GraphicsOutput->Blt ( in EnableQuietBootEx()
615 GraphicsOutput, in EnableQuietBootEx()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootManagerLib/
DBootManager.c97 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in BmBdsSetConsoleMode() local
124 (VOID**)&GraphicsOutput in BmBdsSetConsoleMode()
127 GraphicsOutput = NULL; in BmBdsSetConsoleMode()
139 if ((GraphicsOutput == NULL) || (SimpleTextOut == NULL)) { in BmBdsSetConsoleMode()
161 if (GraphicsOutput != NULL) { in BmBdsSetConsoleMode()
162 MaxGopMode = GraphicsOutput->Mode->MaxMode; in BmBdsSetConsoleMode()
177 Status = GraphicsOutput->QueryMode ( in BmBdsSetConsoleMode()
178 GraphicsOutput, in BmBdsSetConsoleMode()
186 if ((GraphicsOutput->Mode->Info->HorizontalResolution == NewHorizontalResolution) && in BmBdsSetConsoleMode()
187 (GraphicsOutput->Mode->Info->VerticalResolution == NewVerticalResolution)) { in BmBdsSetConsoleMode()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Application/BootManagerMenuApp/
DBootManagerMenu.c695 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in BdsSetConsoleMode() local
722 (VOID**)&GraphicsOutput in BdsSetConsoleMode()
725 GraphicsOutput = NULL; in BdsSetConsoleMode()
737 if ((GraphicsOutput == NULL) || (SimpleTextOut == NULL)) { in BdsSetConsoleMode()
759 if (GraphicsOutput != NULL) { in BdsSetConsoleMode()
760 MaxGopMode = GraphicsOutput->Mode->MaxMode; in BdsSetConsoleMode()
775 Status = GraphicsOutput->QueryMode ( in BdsSetConsoleMode()
776 GraphicsOutput, in BdsSetConsoleMode()
784 if ((GraphicsOutput->Mode->Info->HorizontalResolution == NewHorizontalResolution) && in BdsSetConsoleMode()
785 (GraphicsOutput->Mode->Info->VerticalResolution == NewVerticalResolution)) { in BdsSetConsoleMode()
[all …]
/device/linaro/bootloader/edk2/DuetPkg/BiosVideoThunkDxe/
DBiosVideo.c537 &BiosVideoPrivate->GraphicsOutput, in BiosVideoChildHandleInstall()
603 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in BiosVideoChildHandleUninstall() local
613 (VOID **) &GraphicsOutput, in BiosVideoChildHandleUninstall()
619 BiosVideoPrivate = BIOS_VIDEO_DEV_FROM_GRAPHICS_OUTPUT_THIS (GraphicsOutput); in BiosVideoChildHandleUninstall()
657 &BiosVideoPrivate->GraphicsOutput, in BiosVideoChildHandleUninstall()
766 if (BiosVideoPrivate->GraphicsOutput.Mode != NULL) { in BiosVideoDeviceReleaseResource()
767 if (BiosVideoPrivate->GraphicsOutput.Mode->Info != NULL) { in BiosVideoDeviceReleaseResource()
768 gBS->FreePool (BiosVideoPrivate->GraphicsOutput.Mode->Info); in BiosVideoDeviceReleaseResource()
770 gBS->FreePool (BiosVideoPrivate->GraphicsOutput.Mode); in BiosVideoDeviceReleaseResource()
1073 BiosVideoPrivate->GraphicsOutput.QueryMode = BiosVideoGraphicsOutputQueryMode; in BiosVideoCheckForVbe()
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/
DBiosVideo.c633 BiosVideoPrivate->GraphicsOutput.QueryMode = BiosVideoGraphicsOutputQueryMode; in BiosVideoChildHandleInstall()
634 BiosVideoPrivate->GraphicsOutput.SetMode = BiosVideoGraphicsOutputSetMode; in BiosVideoChildHandleInstall()
640 BiosVideoPrivate->GraphicsOutput.Mode = (EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE *) AllocatePool ( in BiosVideoChildHandleInstall()
643 if (NULL == BiosVideoPrivate->GraphicsOutput.Mode) { in BiosVideoChildHandleInstall()
648 …BiosVideoPrivate->GraphicsOutput.Mode->Info = (EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *) AllocatePoo… in BiosVideoChildHandleInstall()
651 if (NULL == BiosVideoPrivate->GraphicsOutput.Mode->Info) { in BiosVideoChildHandleInstall()
745 if (BiosVideoPrivate->GraphicsOutput.Mode != NULL) { in BiosVideoChildHandleInstall()
746 if (BiosVideoPrivate->GraphicsOutput.Mode->Info != NULL) { in BiosVideoChildHandleInstall()
747 FreePool (BiosVideoPrivate->GraphicsOutput.Mode->Info); in BiosVideoChildHandleInstall()
748 BiosVideoPrivate->GraphicsOutput.Mode->Info = NULL; in BiosVideoChildHandleInstall()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Application/UiApp/
DFrontPage.c975 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput; in BdsSetConsoleMode() local
1002 (VOID**)&GraphicsOutput in BdsSetConsoleMode()
1005 GraphicsOutput = NULL; in BdsSetConsoleMode()
1017 if ((GraphicsOutput == NULL) || (SimpleTextOut == NULL)) { in BdsSetConsoleMode()
1039 if (GraphicsOutput != NULL) { in BdsSetConsoleMode()
1040 MaxGopMode = GraphicsOutput->Mode->MaxMode; in BdsSetConsoleMode()
1055 Status = GraphicsOutput->QueryMode ( in BdsSetConsoleMode()
1056 GraphicsOutput, in BdsSetConsoleMode()
1064 if ((GraphicsOutput->Mode->Info->HorizontalResolution == NewHorizontalResolution) && in BdsSetConsoleMode()
1065 (GraphicsOutput->Mode->Info->VerticalResolution == NewVerticalResolution)) { in BdsSetConsoleMode()
[all …]

123