Home | History | Annotate | Download | only in pbsdboot

Lines Matching refs:fbs

385 void SetBootInfo(struct bootinfo *bi, struct fb_setting *fbs);
808 SetBootInfo(struct bootinfo *bi, struct fb_setting *fbs)
817 bi->fb_addr = (unsigned char*)(fbs->addr + 0xA0000000);
818 bi->fb_type = fbs->type;
819 bi->fb_line_bytes = fbs->linebytes;
820 bi->fb_width = fbs->width;
821 bi->fb_height = fbs->height;
822 bi->platid_cpu = fbs->platid_cpu;
823 bi->platid_machine = fbs->platid_machine;
827 fbs->name,
835 UpdateFbDlg(HWND hWnd, struct fb_setting *fbs, int direction)
844 SetDlgItemText(hWnd, IDC_FB_NAME, fbs->name);
847 if (fb_types[i].type == fbs->type) break;
854 debug_printf(TEXT("UpdateFbDlg(%s)\n"), fbs->name);
859 wsprintf(tmpbuf, TEXT("%X"), fbs->addr);
861 wsprintf(tmpbuf, TEXT("%d"), fbs->width);
863 wsprintf(tmpbuf, TEXT("%d"), fbs->height);
865 wsprintf(tmpbuf, TEXT("%d"), fbs->linebytes);
867 wsprintf(tmpbuf, TEXT("%08X"), fbs->platid_cpu);
869 wsprintf(tmpbuf, TEXT("%08X"), fbs->platid_machine);
873 GetDlgItemText(hWnd, IDC_FB_NAME, fbs->name, PATHBUFLEN);
887 fbs->platid_cpu = _tcstoul(tmpbuf, NULL, 16);
889 fbs->platid_machine = _tcstoul(tmpbuf, NULL, 16);
890 fbs->type = type;
891 fbs->addr = addr;
892 fbs->width = width;
893 fbs->height = height;
894 fbs->linebytes = linebytes;
898 fbs->platid_cpu,
899 fbs->platid_machine);