Lines Matching defs:termios
647 tty->termios.c_lflag &= ~ECHO;
1082 struct ktermios *termios = &tty->termios;
1087 newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0;
1088 newline.bParityType = termios->c_cflag & PARENB ?
1089 (termios->c_cflag & PARODD ? 1 : 2) +
1090 (termios->c_cflag & CMSPAR ? 2 : 0) : 0;
1091 newline.bDataBits = tty_get_char_size(termios->c_cflag);
1093 /* FIXME: Needs to clear unsupported bits in the termios */
1094 acm->clocal = ((termios->c_cflag & CLOCAL) != 0);
1720 .driver_info = DISABLE_ECHO, }, /* DISABLE ECHO in termios flag */
1741 .driver_info = DISABLE_ECHO, /* DISABLE ECHO in termios flag */