Home
last modified time | relevance | path

Searched refs:vtys (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/dev/misc/syscons/
HDsyscons.c583 sc->dev = kmalloc(sizeof(cdev_t)*sc->vtys, M_SYSCONS, M_WAITOK|M_ZERO); in sc_attach_unit()
613 sc->vtys, sc->config); in sc_attach_unit()
638 for (vc = 1; vc < sc->vtys; vc++) { in sc_attach_unit()
1301 for (i = sc->first_vty; i < sc->first_vty + sc->vtys; i++) { in scioctl()
1323 if ((i < sc->first_vty) || (i >= sc->first_vty + sc->vtys)) { in scioctl()
2883 if ((next_scr < sc->first_vty) || (next_scr >= sc->first_vty + sc->vtys) in sc_switch_scr()
3314 sc->vtys = MAXCONS; /* XXX: should be configurable */ in scinit()
3328 sc->dev = kmalloc(sizeof(cdev_t)*sc->vtys, M_SYSCONS, M_WAITOK | M_ZERO); in scinit()
4013 for (i = (this_scr - sc->first_vty + 1)%sc->vtys; in scgetc()
4015 i = (i + 1)%sc->vtys) { in scgetc()
[all …]
HDscmouse.c239 for (i = 0; i < sc->vtys; ++i) { in sc_remove_all_cutmarkings()
253 for (i = 0; i < sc->vtys; ++i) { in sc_remove_all_mouse()
HDsyscons.h210 int vtys; member