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

  /external/strace/
term.c 183 struct termios tios; local
212 if (!verbose(tcp) || umove(tcp, arg, &tios) < 0)
217 printxval(baud_options, tios.c_cflag & CBAUD, "B???");
219 printxval(baud_options, tios.c_ispeed, "B???");
220 if (tios.c_ispeed != tios.c_ospeed) {
222 printxval(baud_options, tios.c_ospeed, "B???");
227 (tios.c_oflag & OPOST) ? "" : "-",
228 (tios.c_lflag & ISIG) ? "" : "-",
229 (tios.c_lflag & ICANON) ? "" : "-"
    [all...]
  /external/ppp/pppd/
sys-linux.c 904 struct termios tios; local
907 if (tcgetattr(tty_fd, &tios) < 0) {
914 inittermios = tios;
916 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
917 tios.c_cflag |= CS8 | CREAD | HUPCL;
919 tios.c_iflag = IGNBRK | IGNPAR;
920 tios.c_oflag = 0;
921 tios.c_lflag = 0;
922 tios.c_cc[VMIN] = 1;
923 tios.c_cc[VTIME] = 0
2554 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...]
  /external/mksh/src/
funcs.c 1804 mksh_ttyst tios; local
    [all...]

Completed in 120 milliseconds