Home
last modified time | relevance | path

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

/external/strace/
Dterm.c50 struct termios tios; in term_ioctl() local
72 if (!verbose(tcp) || umove(tcp, arg, &tios) < 0) in term_ioctl()
76 printxval(baud_options, tios.c_cflag & CBAUD, "B???"); in term_ioctl()
78 (tios.c_oflag & OPOST) ? "" : "-", in term_ioctl()
79 (tios.c_lflag & ISIG) ? "" : "-", in term_ioctl()
80 (tios.c_lflag & ICANON) ? "" : "-", in term_ioctl()
81 (tios.c_lflag & ECHO) ? "" : "-"); in term_ioctl()
85 (long) tios.c_iflag, (long) tios.c_oflag); in term_ioctl()
87 (long) tios.c_cflag, (long) tios.c_lflag); in term_ioctl()
88 tprintf("c_line=%u, ", tios.c_line); in term_ioctl()
[all …]
/external/ppp/pppd/
Dsys-linux.c935 struct termios tios; in set_up_tty() local
938 if (tcgetattr(tty_fd, &tios) < 0) { in set_up_tty()
945 inittermios = tios; in set_up_tty()
947 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL); in set_up_tty()
948 tios.c_cflag |= CS8 | CREAD | HUPCL; in set_up_tty()
950 tios.c_iflag = IGNBRK | IGNPAR; in set_up_tty()
951 tios.c_oflag = 0; in set_up_tty()
952 tios.c_lflag = 0; in set_up_tty()
953 tios.c_cc[VMIN] = 1; in set_up_tty()
954 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;
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/
Dtty.c1189 struct termios *tios = &el->el_tty.t_ex; in tty_stty() local
1205 tios = &el->el_tty.t_ed; in tty_stty()
1210 tios = &el->el_tty.t_ex; in tty_stty()
1215 tios = &el->el_tty.t_ts; in tty_stty()
1304 tios->c_cc[c] = (cc_t)v; in tty_stty()
1324 if (tty_setty(el, TCSADRAIN, tios) == -1) { in tty_stty()
/external/mksh/src/
Dfuncs.c1832 mksh_ttyst tios; in c_read() local
1927 x_mkraw(fd, &tios, true); in c_read()
2216 mksh_tcset(fd, &tios); in c_read()