Home | History | Annotate | Download | only in openssh

Lines Matching refs:tio

283 	struct termios tio;
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;
374 if (tcgetattr(fd, &tio) == -1) {
392 cfsetispeed(&tio, baud_to_speed(baud)) == -1)
402 cfsetospeed(&tio, baud_to_speed(baud)) == -1)
409 tio.c_cc[NAME] = special_char_decode(get_arg()); \
415 tio.FIELD |= NAME; \
417 tio.FIELD &= ~NAME; \
488 if (tcsetattr(fd, TCSANOW, &tio) == -1)