Searched refs:ttybuf (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/usr.bin/mail/ |
| H A D | tty.c | 62 struct termios ttybuf; in grabh() local 83 if (tcgetattr(fileno(stdin), &ttybuf) < 0) { in grabh() 87 c_erase = ttybuf.c_cc[VERASE]; in grabh() 88 c_kill = ttybuf.c_cc[VKILL]; in grabh() 90 ttybuf.c_cc[VERASE] = _POSIX_VDISABLE; in grabh() 91 ttybuf.c_cc[VKILL] = _POSIX_VDISABLE; in grabh() 98 extproc = ((ttybuf.c_lflag & EXTPROC) ? 1 : 0); in grabh() 112 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-14.2/usr.bin/who/ |
| H A D | who.c | 215 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-14.2/usr.bin/wall/ |
| H A D | wall.c | 85 char ttybuf[MAXPATHLEN]; in ttystat() local 87 (void)snprintf(ttybuf, sizeof(ttybuf), "%s%s", _PATH_DEV, line); in ttystat() 88 if (stat(ttybuf, &sb) == 0) { in ttystat()
|
| /freebsd-14.2/usr.bin/w/ |
| H A D | w.c | 573 char ttybuf[MAXPATHLEN]; in ttystat() local 575 (void)snprintf(ttybuf, sizeof(ttybuf), "%s%s", _PATH_DEV, line); in ttystat() 576 if (stat(ttybuf, &sb) == 0 && S_ISCHR(sb.st_mode)) in ttystat()
|
| /freebsd-14.2/usr.sbin/lpr/lpd/ |
| H A D | printjob.c | 1964 struct termios ttybuf; in setty() local 1970 if (tcgetattr(pfd, &ttybuf) < 0) { in setty() 1975 cfsetspeed(&ttybuf, pp->baud_rate); in setty() 1980 (void) msearch(tmp, &ttybuf); in setty() 1984 if (tcsetattr(pfd, TCSAFLUSH, &ttybuf) == -1) { in setty()
|