Lines Matching defs:termios
2424 port->tty->termios - this would lose speed settings, etc.
2662 /* old_termios contains the original termios settings and tty->termios contains
2672 struct ktermios *termios = &tty->termios;
2673 unsigned int cflag = termios->c_cflag;
2679 if (priv->force_baud && ((termios->c_cflag & CBAUD) != B0)) {
2688 termios->c_cflag |= CRTSCTS;
2708 termios->c_cflag &= ~CSIZE;
2710 termios->c_cflag |= old_termios->c_cflag & CSIZE;
2712 termios->c_cflag |= CS8;
2715 cflag = termios->c_cflag;
2720 if (old_termios->c_cflag == termios->c_cflag
2721 && old_termios->c_ispeed == termios->c_ispeed
2722 && old_termios->c_ospeed == termios->c_ospeed)
2730 (termios->c_cflag & (CSIZE|PARODD|PARENB|CMSPAR|CSTOPB)))