HomeSort by relevance Sort by last modified time
    Searched defs:tio (Results 1 - 7 of 7) sorted by null

  /external/syslinux/com32/libutil/
ansiline.c 65 struct termios tio; local
73 tcgetattr(0, &tio);
74 tio.c_iflag &= ~ICRNL;
75 tio.c_iflag |= IGNCR;
76 tio.c_lflag |= ICANON | ECHO;
77 if (!tio.c_oflag & OPOST)
78 tio.c_oflag = 0;
79 tio.c_oflag |= OPOST | ONLCR;
80 tcsetattr(0, TCSANOW, &tio);
ansiraw.c 66 struct termios tio; local
74 tcgetattr(0, &tio);
75 tio.c_iflag &= ~ICRNL;
76 tio.c_iflag |= IGNCR;
77 tio.c_lflag &= ~(ISIG | ICANON | ECHO);
78 if (!tio.c_oflag & OPOST)
79 tio.c_oflag = 0;
80 tio.c_oflag |= OPOST | ONLCR;
81 tio.c_cc[VMIN] = 0;
82 tio.c_cc[VTIME] = 1; /* Don't 100% busy-wait in Linux *
88 struct termios tio, rtio; local
    [all...]
  /libcore/ojluni/src/main/native/
Console_md.c 56 struct termios tio; local
59 if (tcgetattr(tty, &tio) == -1) {
63 old = (tio.c_lflag & ECHO);
65 tio.c_lflag |= ECHO;
67 tio.c_lflag &= ~ECHO;
69 if (tcsetattr(tty, TCSANOW, &tio) == -1) {
  /device/google/contexthub/util/stm32_flash/
uart.c 85 struct termios tio; local
106 if (tcgetattr(uart_handle->fd, &tio))
107 memset(&tio, 0, sizeof(tio));
109 tio.c_cflag = CS8 | CLOCAL | CREAD | PARENB;
110 cfsetospeed(&tio, B57600);
111 cfsetispeed(&tio, B57600);
112 tio.c_iflag = 0; /* turn off IGNPAR */
113 tio.c_oflag = 0; /* turn off OPOST */
114 tio.c_lflag = 0; /* turn off CANON, ECHO*, etc *
    [all...]
  /external/strace/
term.c 75 struct termio tio; local
79 if (umove_or_printaddr(tcp, addr, &tio))
83 printxval(baud_options, tio.c_cflag & CBAUD, "B???");
85 (tio.c_oflag & OPOST) ? "" : "-",
86 (tio.c_lflag & ISIG) ? "" : "-",
87 (tio.c_lflag & ICANON) ? "" : "-",
88 (tio.c_lflag & ECHO) ? "" : "-");
92 (long) tio.c_iflag, (long) tio.c_oflag);
94 (long) tio.c_cflag, (long) tio.c_lflag)
    [all...]
  /frameworks/base/core/jni/
android_hardware_SerialPort.cpp 144 struct termios tio; local
145 if (tcgetattr(fd, &tio))
146 memset(&tio, 0, sizeof(tio));
148 tio.c_cflag = speed | CS8 | CLOCAL | CREAD;
150 tio.c_oflag &= ~OPOST;
151 tio.c_iflag = IGNPAR;
152 tio.c_lflag = 0; /* turn of CANON, ECHO*, etc */
154 tio.c_cc[VTIME] = 0;
155 tio.c_cc[VMIN] = 1
    [all...]
  /external/syslinux/com32/rosh/
rosh.h 182 struct termios tio; local
187 tcgetattr(0, &tio);
188 tio.c_iflag &= ~IGNCR;
189 tcsetattr(0, TCSAFLUSH, &tio);
197 struct termios tio; local
200 tcgetattr(0, &tio);
201 tio.c_iflag |= ICRNL;
202 tio.c_iflag &= ~IGNCR;
203 tcsetattr(0, TCSANOW, &tio);

Completed in 1073 milliseconds