Home
last modified time | relevance | path

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

/external/strace/
Dterm.c186 struct termios tios; local
215 if (!verbose(tcp) || umove(tcp, arg, &tios) < 0)
220 printxval(baud_options, tios.c_cflag & CBAUD, "B???");
222 printxval(baud_options, tios.c_ispeed, "B???");
223 if (tios.c_ispeed != tios.c_ospeed) {
225 printxval(baud_options, tios.c_ospeed, "B???");
230 (tios.c_oflag & OPOST) ? "" : "-",
231 (tios.c_lflag & ISIG) ? "" : "-",
232 (tios.c_lflag & ICANON) ? "" : "-",
233 (tios.c_lflag & ECHO) ? "" : "-");
[all …]
/external/ppp/pppd/
Dsys-linux.c904 struct termios tios; in set_up_tty() local
907 if (tcgetattr(tty_fd, &tios) < 0) { in set_up_tty()
914 inittermios = tios; in set_up_tty()
916 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL); in set_up_tty()
917 tios.c_cflag |= CS8 | CREAD | HUPCL; in set_up_tty()
919 tios.c_iflag = IGNBRK | IGNPAR; in set_up_tty()
920 tios.c_oflag = 0; in set_up_tty()
921 tios.c_lflag = 0; in set_up_tty()
922 tios.c_cc[VMIN] = 1; in set_up_tty()
923 tios.c_cc[VTIME] = 0; in set_up_tty()
[all …]
Dsys-solaris.c1186 struct termios tios; local
1191 if (!sync_serial && tcgetattr(fd, &tios) < 0)
1204 inittermios = tios;
1212 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
1215 tios.c_cflag |= CRTSCTS;
1217 tios.c_cflag &= ~CRTSCTS;
1228 tios.c_cflag |= CS8 | CREAD | HUPCL;
1230 tios.c_cflag |= CLOCAL;
1231 tios.c_iflag = IGNBRK | IGNPAR;
1232 tios.c_oflag = 0;
[all …]