Lines Matching refs:termios
74 struct termios termios; local
92 if ((term = get_ttymode(fd, &termio, &termios, &stermio,
101 termios.c_cc[VEOF] = CEOF;
102 termios.c_cc[VEOL] = CNUL;
105 termios.c_lflag &= ECHO;
106 termios.c_cc[VMIN] = 1;
107 termios.c_cc[VTIME] = 0;
121 if ((uarg = sttyparse(cnt, argvp, term, &termio, &termios,
129 if (set_ttymode(fd, term, &termio, &termios, &stermio,
228 struct termios termios; in hang_up_line() local
233 if (ioctl(fd,TCGETS,&termios) < 0) { in hang_up_line()
246 cfsetospeed(&termios, B0); in hang_up_line()
248 if (ioctl(fd,TCSETS,&termios) < 0) { in hang_up_line()