HomeSort by relevance Sort by last modified time
    Searched refs:tios (Results 1 - 6 of 6) sorted by null

  /external/strace/
term.c 49 struct termios tios; local
71 if (!verbose(tcp) || umove(tcp, arg, &tios) < 0)
75 printxval(baud_options, tios.c_cflag & CBAUD, "B???");
77 (tios.c_oflag & OPOST) ? "" : "-",
78 (tios.c_lflag & ISIG) ? "" : "-",
79 (tios.c_lflag & ICANON) ? "" : "-",
80 (tios.c_lflag & ECHO) ? "" : "-");
84 (long) tios.c_iflag, (long) tios.c_oflag);
86 (long) tios.c_cflag, (long) tios.c_lflag)
    [all...]
  /external/ppp/pppd/
sys-linux.c 905 struct termios tios; local
908 if (tcgetattr(tty_fd, &tios) < 0) {
915 inittermios = tios;
917 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
918 tios.c_cflag |= CS8 | CREAD | HUPCL;
920 tios.c_iflag = IGNBRK | IGNPAR;
921 tios.c_oflag = 0;
922 tios.c_lflag = 0;
923 tios.c_cc[VMIN] = 1;
924 tios.c_cc[VTIME] = 0
2555 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;
1228 tios.c_cflag |= CS8 | CREAD | HUPCL;
1230 tios.c_cflag |= CLOCAL;
1231 tios.c_iflag = IGNBRK | IGNPAR;
1232 tios.c_oflag = 0
2742 struct termios tios; local
    [all...]
  /bionic/libc/bionic/
getentropy_linux.c 420 struct termios tios; local
503 HX(tcgetattr(0, &tios) == -1,
504 tios);
  /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 1803 mksh_ttyst tios; local
    [all...]

Completed in 238 milliseconds