Searched refs:tios (Results 1 – 5 of 5) sorted by relevance
/external/strace/ |
D | term.c | 43 struct termios tios; in decode_termios() local 50 if (umove_or_printaddr(tcp, addr, &tios)) in decode_termios() 54 printxval(baud_options, tios.c_cflag & CBAUD, "B???"); in decode_termios() 56 (tios.c_oflag & OPOST) ? "" : "-", in decode_termios() 57 (tios.c_lflag & ISIG) ? "" : "-", in decode_termios() 58 (tios.c_lflag & ICANON) ? "" : "-", in decode_termios() 59 (tios.c_lflag & ECHO) ? "" : "-"); in decode_termios() 63 (long) tios.c_iflag, (long) tios.c_oflag); in decode_termios() 65 (long) tios.c_cflag, (long) tios.c_lflag); in decode_termios() 66 tprintf("c_line=%u, ", tios.c_line); in decode_termios() [all …]
|
/external/ppp/pppd/ |
D | sys-linux.c | 935 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 …]
|
D | 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/ |
D | tty.c | 1189 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/ |
D | funcs.c | 1871 mksh_ttyst tios; in c_read() local 1968 x_mkraw(fd, &tios, true); in c_read() 2271 mksh_tcset(fd, &tios); in c_read()
|