/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 | 467 struct termios tio; local 489 tcgetattr(fdin, &tio) == 0 && 490 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) { [all...] |
mux.c | 107 struct termios tio; member in struct:mux_session_confirm_ctx 434 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1) [all...] |
channels.c | 1642 struct termios tio; local [all...] |
/external/strace/ |
term.c | 185 struct termio tio; local 257 if (!verbose(tcp) || umove(tcp, arg, &tio) < 0) 261 printxval(baud_options, tio.c_cflag & CBAUD, "B???"); 263 (tio.c_oflag & OPOST) ? "" : "-", 264 (tio.c_lflag & ISIG) ? "" : "-", 265 (tio.c_lflag & ICANON) ? "" : "-", 266 (tio.c_lflag & ECHO) ? "" : "-"); 270 (long) tio.c_iflag, (long) tio.c_oflag); 272 (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/dropbear/ |
cli-chansession.c | 110 struct termios tio; local 119 if (tcgetattr(STDIN_FILENO, &tio) == -1) { 124 cli_ses.saved_tio = tio; 126 tio.c_iflag |= IGNPAR; 127 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF); 129 tio.c_iflag &= ~IUCLC; 131 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL); 133 tio.c_lflag &= ~IEXTEN; 135 tio.c_oflag &= ~OPOST; 136 tio.c_cc[VMIN] = 1 166 struct termios tio; local [all...] |
/external/libppp/src/ |
tty.c | 482 struct termios tio; local 484 tcgetattr(p->fd, &tio); 485 if (cfsetspeed(&tio, B0) == -1 || tcsetattr(p->fd, TCSANOW, &tio) == -1)
|
/system/core/adb/ |
commandline.c | 220 struct termios tio; local 222 if(tcgetattr(fd, &tio)) return; 225 tio.c_lflag = 0; /* disable CANON, ECHO*, etc */ 228 tio.c_cc[VTIME] = 0; 229 tio.c_cc[VMIN] = 1; 231 tcsetattr(fd, TCSANOW, &tio); [all...] |