/src/sys/external/bsd/gnu-efi/dist/apps/ |
modelist.c | 9 print_modes(EFI_GRAPHICS_OUTPUT_PROTOCOL *gop) 14 if (gop->Mode) { 15 imax = gop->Mode->MaxMode; 16 Print(L"GOP reports MaxMode %d\n", imax); 18 Print(L"gop->Mode is NULL\n"); 25 rc = uefi_call_wrapper(gop->QueryMode, 4, gop, i, &SizeOfInfo, 28 Print(L"gop->QueryMode() returned %r\n", rc); 29 Print(L"Trying to start GOP with SetMode().\n"); 30 rc = uefi_call_wrapper(gop->SetMode, 2, gop 89 EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; local in function:efi_main [all...] |
bltgrid.c | 31 draw_boxes(EFI_GRAPHICS_OUTPUT_PROTOCOL *gop) 40 if (gop->Mode) { 41 imax = gop->Mode->MaxMode; 43 Print(L"gop->Mode is NULL\n"); 49 rc = uefi_call_wrapper(gop->QueryMode, 4, gop, i, &SizeOfInfo, 52 Print(L"gop->QueryMode() returned %r\n", rc); 53 Print(L"Trying to start GOP with SetMode().\n"); 54 rc = uefi_call_wrapper(gop->SetMode, 2, gop, 113 EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; local in function:efi_main [all...] |
lfbgrid.c | 48 draw_boxes(EFI_GRAPHICS_OUTPUT_PROTOCOL *gop) 65 if (gop->Mode) { 66 imax = gop->Mode->MaxMode; 68 Print(L"gop->Mode is NULL\n"); 74 rc = uefi_call_wrapper(gop->QueryMode, 4, gop, i, &SizeOfInfo, 77 Print(L"gop->QueryMode() returned %r\n", rc); 78 Print(L"Trying to start GOP with SetMode().\n"); 79 rc = uefi_call_wrapper(gop->SetMode, 2, gop, 153 EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; local in function:efi_main [all...] |
/src/sys/stand/efiboot/ |
efigop.c | 31 static EFI_GRAPHICS_OUTPUT_PROTOCOL *gop = NULL; variable in typeref:typename:EFI_GRAPHICS_OUTPUT_PROTOCOL * 48 gop_handle[n], &GraphicsOutputProtocol, (void **)&gop); 49 if (EFI_ERROR(status) || gop->Mode == NULL) { 50 gop = NULL; 86 if (gop == NULL) { 90 command_printtab("GOP", ""); 91 efi_gop_printmode(gop->Mode->Mode, gop->Mode->Info); 92 if (gop->Mode->FrameBufferBase != 0) { 94 (unsigned long)gop->Mode->FrameBufferBase [all...] |
efifdt.c | 333 EFI_GRAPHICS_OUTPUT_PROTOCOL *gop; local in function:efi_fdt_gop 345 status = uefi_call_wrapper(BS->HandleProtocol, 3, gop_handle[n], &GraphicsOutputProtocol, (void **)&gop); 349 mode = gop->Mode; 354 printf("GOP: FB @ 0x%" PRIx64 " size 0x%" PRIxUINTN "\n", mode->FrameBufferBase, mode->FrameBufferSize); 355 printf("GOP: Version %d\n", mode->Info->Version); 356 printf("GOP: HRes %d VRes %d\n", mode->Info->HorizontalResolution, mode->Info->VerticalResolution); 357 printf("GOP: PixelFormat %d\n", mode->Info->PixelFormat); 358 printf("GOP: PixelBitmask R 0x%x G 0x%x B 0x%x Res 0x%x\n", 363 printf("GOP: Pixels per scanline %d\n", mode->Info->PixelsPerScanLine); 367 printf("GOP: PixelBltOnly pixel format not supported\n") [all...] |
/src/sys/arch/xen/xen/ |
xbdback_xenbus.c | 1289 gnttab_copy_t gop; local in function:xbdback_co_io 1292 gop.flags = GNTCOPY_source_gref; 1293 gop.len = req->nr_segments 1296 gop.source.u.ref = in_gntref; 1297 gop.source.offset = 0; 1298 gop.source.domid = xbdi->xbdi_domid; 1301 gop.dest.offset = ma & PAGE_MASK; 1302 gop.dest.domid = DOMID_SELF; 1303 gop.dest.u.gmfn = ma >> PAGE_SHIFT; 1305 if (HYPERVISOR_grant_table_op(GNTTABOP_copy, &gop, 1) != 0) [all...] |
xennetback_xenbus.c | 633 xennetback_copy(struct ifnet *ifp, gnttab_copy_t *gop, int copycnt, 640 if (HYPERVISOR_grant_table_op(GNTTABOP_copy, gop, copycnt) != 0) { 646 if (gop->status != GNTST_okay) { 648 ifp->if_xname, i, dir, gop->status); 682 gnttab_copy_t *gop; local in function:xennetback_tx_copy_process 720 gop = &xneti->xni_gop_copy[copycnt++]; 721 memset(gop, 0, sizeof(*gop)); 722 gop->flags = GNTCOPY_source_gref; 723 gop->len = take 1075 gnttab_copy_t *gop; local in function:xennetback_rx_copy_queue [all...] |