Home | History | Annotate | Download | only in ic

Lines Matching defs:vf

382 	struct vga_raster_font *vf;
415 vf = &vga_console_fontset_ascii;
429 vf->font = wf;
432 vf->font = &builtinfont;
434 LIST_INSERT_HEAD(&vc->vc_fontlist, vf, next);
524 const struct vga_funcs *vf)
541 vc->vc_funcs = vf;
627 const struct vga_funcs *vf = vc->vc_funcs;
675 if (vf->vf_ioctl == NULL) {
682 return ((*vf->vf_ioctl)(v, cmd, data, flag, l));
689 const struct vga_funcs *vf = vc->vc_funcs;
694 if (vf->vf_mmap == NULL)
697 return ((*vf->vf_mmap)(v, offset, prot));
848 struct vga_raster_font *vf;
852 LIST_FOREACH(vf, &vc->vc_fontlist, next) {
853 if (wsfont_matches(vf->font, 0, 0, scr->type->fontheight, 0,
855 scr->encoding = vf->font->encoding;
856 LIST_INSERT_HEAD(&scr->fontset, vf, next);
869 vf = malloc(sizeof(struct vga_raster_font), M_DEVBUF, M_WAITOK);
870 vf->font = wf;
871 scr->encoding = vf->font->encoding;
872 LIST_INSERT_HEAD(&scr->fontset, vf, next);