Home | History | Annotate | Download | only in dev

Lines Matching refs:grf

88 #define SUBR_INIT(ip)		(ip)->grf->g_iteinit(ip)
89 #define SUBR_DEINIT(ip) (ip)->grf->g_itedeinit(ip)
90 #define SUBR_PUTC(ip,c,dy,dx,m) (ip)->grf->g_iteputc(ip,c,dy,dx,m)
91 #define SUBR_CURSOR(ip,flg) (ip)->grf->g_itecursor(ip,flg)
92 #define SUBR_CLEAR(ip,sy,sx,h,w) (ip)->grf->g_iteclear(ip,sy,sx,h,w)
94 (ip)->grf->g_itescroll(ip,sy,sx,count,dir)
210 if (con_itesoftc.grf != NULL &&
211 con_itesoftc.grf->g_unit == gp->g_unit) {
216 memcpy(&ip->grf, &con_itesoftc.grf,
217 (char *)&ip[1] - (char *)&ip->grf);
218 con_itesoftc.grf = NULL;
221 ip->grf = gp;
236 if (con_itesoftc.grf != NULL &&
237 con_itesoftc.grf->g_conpri > gp->g_conpri)
239 con_itesoftc.grf = gp;
247 if (amiga_realconfig && con_itesoftc.grf == NULL)
250 if (con_itesoftc.grf == NULL)
270 if (con_itesoftc.grf == NULL)
273 cd->cn_pri = con_itesoftc.grf->g_conpri;
274 cd->cn_dev = con_itesoftc.grf->g_itedev;
405 if (ip->grf->g_iteinit == NULL)
406 return; /* grf has no console */
680 /* XXX called after changes made in underlying grf layer. */