Searched defs:tio (Results 1 - 7 of 7) sorted by relevance

/external/openssh/
H A Dsshtty.c71 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
[all...]
H A Dttymodes.c283 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)
[all...]
H A Dmux.c107 struct termios tio; member in struct:mux_session_confirm_ctx
434 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
1230 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env);
H A Dserverloop.c467 struct termios tio; local
489 tcgetattr(fdin, &tio) == 0 &&
490 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
H A Dchannels.c1642 struct termios tio; local
1710 if (tcgetattr(c->wfd, &tio) == 0 &&
1711 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
/external/strace/
H A Dterm.c185 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
[all...]
/external/dropbear/
H A Dcli-chansession.c110 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
166 struct termios tio; local
[all...]

Completed in 136 milliseconds