Home
last modified time | relevance | path

Searched refs:ntty (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/bnu/
H A DDevconfig47 # service=cu device=STARLAN push=ntty:tirdwr
48 # service=uucico device=STARLAN push=ntty:tirdwr
/illumos-gate/usr/src/cmd/ps/
H A Dps.c263 static int ntty = 0; variable
554 if (ntty == ttysz) { in stdmain()
560 tty[ntty].tdev = PRNODEV; in stdmain()
564 tty[ntty].tdev = s.st_rdev; in stdmain()
565 tty[ntty++].tname = p; in stdmain()
732 tty[ntty].tname = NULL; in stdmain()
762 if (ntty == ttysz) { in stdmain()
767 tty[ntty].tdev = info.pr_ttydev; in stdmain()
768 tty[ntty++].tname = name; in stdmain()
769 tty[ntty].tname = NULL; in stdmain()
H A Ducbps.c126 static int ntty = 0; variable
272 if (ntty >= NTTYS-1) in ucbmain()
300 ntty++; in ucbmain()
/illumos-gate/usr/src/cmd/pg/
H A Dpg.c1600 struct termio ntty; in terminit() local
1618 (void) ioctl(fileno(stdout), TCGETA, &ntty); in terminit()
1619 ntty.c_lflag &= ~(ECHONL | ECHO | ICANON); in terminit()
1620 ntty.c_cc[VMIN] = 1; in terminit()
1621 ntty.c_cc[VTIME] = 1; in terminit()
1622 (void) ioctl(fileno(stdout), TCSETAW, &ntty); in terminit()
/illumos-gate/usr/src/cmd/more/
H A Dmore.c154 struct termio ntty; /* new tty modes */ variable
1780 ioctl(2, TCGETA, &ntty); in set_tty()
1781 ntty.c_lflag &= ~ECHO & ~ICANON; in set_tty()
1782 ntty.c_cc[VMIN] = (char)1; in set_tty()
1783 ntty.c_cc[VTIME] = (char)0; in set_tty()
1784 ioctl (2, TCSETAF, &ntty); /* set new tty modes */ in set_tty()