Lines Matching defs:vgatext_softc

68 struct vgatext_softc {
161 static int vgatext_devinit(struct vgatext_softc *, struct vis_devinit *data);
162 static void vgatext_cons_copy(struct vgatext_softc *,
164 static void vgatext_cons_display(struct vgatext_softc *,
166 static void vgatext_cons_cursor(struct vgatext_softc *,
174 static void vgatext_init(struct vgatext_softc *);
175 static void vgatext_set_text(struct vgatext_softc *);
177 static void vgatext_save_text(struct vgatext_softc *softc);
178 static void vgatext_restore_textmode(struct vgatext_softc *softc);
179 static int vgatext_suspend(struct vgatext_softc *softc);
180 static void vgatext_resume(struct vgatext_softc *softc);
183 static void vgatext_init_graphics(struct vgatext_softc *);
186 static int vgatext_kdsetmode(struct vgatext_softc *softc, int mode);
187 static void vgatext_setfont(struct vgatext_softc *softc);
188 static void vgatext_get_cursor(struct vgatext_softc *softc,
190 static void vgatext_set_cursor(struct vgatext_softc *softc, int row, int col);
191 static void vgatext_hide_cursor(struct vgatext_softc *softc);
192 static void vgatext_save_colormap(struct vgatext_softc *softc);
193 static void vgatext_restore_colormap(struct vgatext_softc *softc);
206 return (kmem_zalloc(sizeof (struct vgatext_softc), KM_SLEEP));
212 kmem_free(ptr, sizeof (struct vgatext_softc));
245 gfxp_check_for_console(dev_info_t *devi, struct vgatext_softc *softc,
326 struct vgatext_softc *softc = (struct vgatext_softc *)ptr;
492 struct vgatext_softc *softc = (struct vgatext_softc *)ptr;
521 struct vgatext_softc *softc = (struct vgatext_softc *)ptr;
538 do_gfx_ioctl(int cmd, intptr_t data, int mode, struct vgatext_softc *softc)
653 struct vgatext_softc *softc = (struct vgatext_softc *)ptr;
675 vgatext_save_text(struct vgatext_softc *softc)
684 vgatext_restore_textmode(struct vgatext_softc *softc)
700 vgatext_suspend(struct vgatext_softc *softc)
718 vgatext_resume(struct vgatext_softc *softc)
760 vgatext_kdsettext(struct vgatext_softc *softc)
777 vgatext_kdsetgraphics(struct vgatext_softc *softc)
788 vgatext_kdsetmode(struct vgatext_softc *softc, int mode)
827 struct vgatext_softc *softc = (struct vgatext_softc *)ptr;
861 vgatext_devinit(struct vgatext_softc *softc, struct vis_devinit *data)
881 vgatext_cons_display(struct vgatext_softc *softc, struct vis_consdisplay *da)
924 vgatext_cons_display((struct vgatext_softc *)arg, da);
932 vgatext_cons_copy(struct vgatext_softc *softc, struct vis_conscopy *ma)
1007 vgatext_cons_copy((struct vgatext_softc *)arg, ca);
1012 vgatext_cons_cursor(struct vgatext_softc *softc, struct vis_conscursor *ca)
1051 vgatext_cons_cursor((struct vgatext_softc *)arg, ca);
1058 vgatext_hide_cursor(struct vgatext_softc *softc)
1064 vgatext_set_cursor(struct vgatext_softc *softc, int row, int col)
1080 vgatext_get_cursor(struct vgatext_softc *softc,
1097 vgatext_set_text(struct vgatext_softc *softc)
1153 vgatext_init(struct vgatext_softc *softc)
1176 vgatext_init_graphics(struct vgatext_softc *softc)
1184 vgatext_setfont(struct vgatext_softc *softc)
1231 vgatext_save_colormap(struct vgatext_softc *softc)
1247 vgatext_restore_colormap(struct vgatext_softc *softc)
1379 vgatext_return_pointers(struct vgatext_softc *softc, struct vgaregmap *fbs,