Home
last modified time | relevance | path

Searched refs:tios (Results 1 – 4 of 4) sorted by relevance

/mirbsd/src/usr.sbin/pppd/
Dsys-bsd.c532 struct termios tios; local
534 if (tcgetattr(fd, &tios) < 0) {
540 inittermios = tios;
544 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
546 tios.c_cflag |= CRTSCTS;
548 tios.c_cflag &= ~CRTSCTS;
550 tios.c_cflag |= CS8 | CREAD | HUPCL;
552 tios.c_cflag |= CLOCAL;
553 tios.c_iflag = IGNBRK | IGNPAR;
554 tios.c_oflag = 0;
[all …]
/mirbsd/src/usr.sbin/sliplogin/
Dsliplogin.c187 struct termios tios, otios; in main() local
248 if (tcgetattr(STDIN_FILENO, &tios) < 0) { in main()
252 otios = tios; in main()
253 cfmakeraw(&tios); in main()
254 tios.c_iflag &= ~IMAXBEL; in main()
255 if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &tios) < 0) { in main()
259 speed = cfgetispeed(&tios); in main()
/mirbsd/src/lib/libedit/
Dtty.c1154 struct termios *tios = &el->el_tty.t_ex; in tty_stty() local
1169 tios = &el->el_tty.t_ed; in tty_stty()
1174 tios = &el->el_tty.t_ex; in tty_stty()
1179 tios = &el->el_tty.t_ts; in tty_stty()
1259 tios->c_cc[c] = v; in tty_stty()
/mirbsd/src/bin/mksh/
Dfuncs.c1817 mksh_ttyst tios; in c_read() local
1912 x_mkraw(fd, &tios, true); in c_read()
2194 mksh_tcset(fd, &tios); in c_read()