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

  /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/u-boot/tools/gdb/
serial.c 18 static struct termios tios = { BRKINT, 0, B115200|CS8|CREAD, 0, { 0 } }; variable in typeref:struct:termios
20 static struct termios tios = { BRKINT, 0, B115200|CS8|CREAD, 0, 0 }; variable in typeref:struct:termios
68 if (cfsetospeed(&tios, speed) < 0)
74 if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) {
  /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/mksh/src/
funcs.c 1609 mksh_ttyst tios; local
    [all...]

Completed in 364 milliseconds