/external/strace/ |
term.c | 44 struct termios tios; local 47 if (umove_or_printaddr(tcp, addr, &tios)) 51 printxval(baud_options, tios.c_cflag & CBAUD, "B???"); 53 (tios.c_oflag & OPOST) ? "" : "-", 54 (tios.c_lflag & ISIG) ? "" : "-", 55 (tios.c_lflag & ICANON) ? "" : "-", 56 (tios.c_lflag & ECHO) ? "" : "-"); 60 (long) tios.c_iflag, (long) tios.c_oflag); 62 (long) tios.c_cflag, (long) tios.c_lflag) [all...] |
/external/ppp/pppd/ |
sys-linux.c | 935 struct termios tios; local 938 if (tcgetattr(tty_fd, &tios) < 0) { 945 inittermios = tios; 947 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL); 948 tios.c_cflag |= CS8 | CREAD | HUPCL; 950 tios.c_iflag = IGNBRK | IGNPAR; 951 tios.c_oflag = 0; 952 tios.c_lflag = 0; 953 tios.c_cc[VMIN] = 1; 954 tios.c_cc[VTIME] = 0 2620 struct termios tios; local [all...] |
sys-solaris.c | 1186 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; 1229 tios.c_cflag |= CSTOPB; 1231 tios.c_cflag |= CS8 | CREAD | HUPCL; 1233 tios.c_cflag |= CLOCAL; 1234 tios.c_iflag = IGNBRK | IGNPAR [all...] |
/external/libedit/src/ |
tty.c | 1189 struct termios *tios = &el->el_tty.t_ex; local 1205 tios = &el->el_tty.t_ed; 1210 tios = &el->el_tty.t_ex; 1215 tios = &el->el_tty.t_ts; 1304 tios->c_cc[c] = (cc_t)v; 1324 if (tty_setty(el, TCSADRAIN, tios) == -1) { [all...] |
/external/mksh/src/ |
funcs.c | 1609 mksh_ttyst tios; local [all...] |