HomeSort by relevance Sort by last modified time
    Searched refs:tio (Results 1 - 13 of 13) 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...]
  /external/openssh/
sshtty.c 71 struct termios tio; local
73 if (tcgetattr(fileno(stdin), &tio) == -1) {
78 _saved_tio = tio;
79 tio.c_iflag |= IGNPAR;
80 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
82 tio.c_iflag &= ~IUCLC;
84 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
86 tio.c_lflag &= ~IEXTEN;
88 tio.c_oflag &= ~OPOST;
89 tio.c_cc[VMIN] = 1
    [all...]
ttymodes.c 283 struct termios tio; local
302 debug("tty_make_modes: no fd or tio");
305 if (tcgetattr(fd, &tio) == -1) {
310 tio = *tiop;
313 baud = speed_to_baud(cfgetospeed(&tio));
316 baud = speed_to_baud(cfgetispeed(&tio));
323 put_arg(&buf, special_char_encode(tio.c_cc[NAME]));
327 put_arg(&buf, ((tio.FIELD & NAME) != 0));
351 struct termios tio; local
374 if (tcgetattr(fd, &tio) == -1)
    [all...]
serverloop.c 474 struct termios tio; local
496 tcgetattr(fdin, &tio) == 0 &&
497 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
    [all...]
mux.c 102 struct termios tio; member in struct:mux_session_confirm_ctx
435 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
    [all...]
channels.c 1715 struct termios tio; local
    [all...]
  /external/strace/
term.c 76 struct termio tio; local
80 if (umove_or_printaddr(tcp, addr, &tio))
84 printxval(baud_options, tio.c_cflag & CBAUD, "B???");
86 (tio.c_oflag & OPOST) ? "" : "-",
87 (tio.c_lflag & ISIG) ? "" : "-",
88 (tio.c_lflag & ICANON) ? "" : "-",
89 (tio.c_lflag & ECHO) ? "" : "-");
93 (long) tio.c_iflag, (long) tio.c_oflag);
95 (long) tio.c_cflag, (long) tio.c_lflag)
    [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) {
  /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);
  /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/openssh/openbsd-compat/
bsd-openpty.c 186 struct termios tio;
208 if (tcgetattr(*amaster, &tio) != -1) {
209 tio.c_lflag |= (ECHO | ISIG | ICANON);
210 tio.c_oflag |= (OPOST | ONLCR);
211 tio.c_iflag |= ICRNL;
212 tcsetattr(*amaster, TCSANOW, &tio);
  /system/core/adb/
commandline.cpp 246 termios tio;
247 if (tcgetattr(STDIN_FILENO, &tio)) return;
249 cfmakeraw(&tio);
252 tio.c_cc[VTIME] = 0;
253 tio.c_cc[VMIN] = 1;
255 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio);
    [all...]

Completed in 749 milliseconds