Home
last modified time | relevance | path

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

/freebsd-12.1/usr.bin/mail/
H A Dtty.c64 struct termios ttybuf; in grabh() local
85 if (tcgetattr(fileno(stdin), &ttybuf) < 0) { in grabh()
89 c_erase = ttybuf.c_cc[VERASE]; in grabh()
90 c_kill = ttybuf.c_cc[VKILL]; in grabh()
92 ttybuf.c_cc[VERASE] = _POSIX_VDISABLE; in grabh()
93 ttybuf.c_cc[VKILL] = _POSIX_VDISABLE; in grabh()
100 extproc = ((ttybuf.c_lflag & EXTPROC) ? 1 : 0); in grabh()
114 ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf); in grabh()
147 ttybuf.c_cc[VERASE] = c_erase; in grabh()
148 ttybuf.c_cc[VKILL] = c_kill; in grabh()
[all …]
/freebsd-12.1/usr.bin/who/
H A Dwho.c217 char ttybuf[MAXPATHLEN]; in ttystat() local
219 (void)snprintf(ttybuf, sizeof(ttybuf), "%s%s", _PATH_DEV, line); in ttystat()
220 if (stat(ttybuf, &sb) == 0) { in ttystat()
/freebsd-12.1/usr.bin/wall/
H A Dwall.c88 char ttybuf[MAXPATHLEN]; in ttystat() local
90 (void)snprintf(ttybuf, sizeof(ttybuf), "%s%s", _PATH_DEV, line); in ttystat()
91 if (stat(ttybuf, &sb) == 0) { in ttystat()
/freebsd-12.1/usr.bin/w/
H A Dw.c561 char ttybuf[MAXPATHLEN]; in ttystat() local
563 (void)snprintf(ttybuf, sizeof(ttybuf), "%s%s", _PATH_DEV, line); in ttystat()
564 if (stat(ttybuf, &sb) == 0 && S_ISCHR(sb.st_mode)) { in ttystat()
/freebsd-12.1/usr.sbin/lpr/lpd/
H A Dprintjob.c1966 struct termios ttybuf; in setty() local
1972 if (tcgetattr(pfd, &ttybuf) < 0) { in setty()
1977 cfsetspeed(&ttybuf, pp->baud_rate); in setty()
1982 (void) msearch(tmp, &ttybuf); in setty()
1986 if (tcsetattr(pfd, TCSAFLUSH, &ttybuf) == -1) { in setty()