Home | History | Annotate | Download | only in wscons

Lines Matching defs:dconf

319 	struct wsscreen_internal *dconf;
325 dconf = &wsdisplay_console_conf;
330 if (dconf->wsemul != NULL)
331 (*dconf->wsemul->attach)(1, 0, 0, 0, 0, scr, 0);
333 dconf = malloc(sizeof(struct wsscreen_internal),
335 dconf->emulops = type->textops;
336 dconf->emulcookie = cookie;
337 if (dconf->emulops) {
338 dconf->wsemul = wsemul_pick(emul);
339 if (dconf->wsemul == NULL) {
340 free(dconf, M_DEVBUF);
344 dconf->wsemulcookie =
345 (*dconf->wsemul->attach)(0, type, cookie,
348 dconf->wsemul = NULL;
349 dconf->scrdata = type;
352 scr->scr_dconf = dconf;