Searched refs:constty (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/dev/arm/
H A Dcons.c34 * externalizing a global pointer "constty", which is then pointed at the
58 struct tty *constty; /* current console device */ variable in typeref:struct:tty
78 if (constty)
79 return constty->t_dev;
121 if ((unsigned) cmd == TIOCCONS && constty) {
124 constty = NULL;
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dcons.c34 * externalizing a global pointer "constty", which is then pointed at the
58 struct tty *constty; /* current console device */ variable in typeref:struct:tty
79 if (constty)
80 return constty->t_dev;
131 if ((unsigned) cmd == TIOCCONS && constty) {
134 constty = NULL;
/darwin-on-arm/xnu/bsd/machine/
H A Dcons.h61 extern struct tty *constty; /* current console device */
/darwin-on-arm/xnu/bsd/kern/
H A Dsubr_prf.c73 * Eliminated multiple definition of constty which is defined
128 extern struct tty *constty; /* pointer to console "window" tty */
418 constty = 0;
419 if ((pca->flags & TOCONS) && pca->tty == NULL && constty) {
420 pca->tty = constty;
424 (pca->flags & TOCONS) && pca->tty == constty)
425 constty = 0;
430 if ((pca->flags & TOCONS) && constty == 0 && c != '\0')
H A Dtty.c434 if (constty == tp) {
435 constty = NULL;
1158 if (constty && constty != tp &&
1159 ISSET(constty->t_state, TS_CONNECTED)) {
1165 constty = tp;
1166 } else if (tp == constty) {
1167 constty = NULL;
1169 if (constty) {
1170 (*cdevsw[major(constty
[all...]

Completed in 88 milliseconds