Lines Matching defs:termios
627 struct ktermios *termios,
636 if ((termios->c_cflag & CSIZE) != CS8) {
638 termios->c_cflag &= ~CSIZE;
639 termios->c_cflag |= CS8;
641 if (termios->c_iflag & (INPCK | PARMRK))
643 if (termios->c_iflag & BRKINT)
645 termios->c_iflag &= ~(INPCK|PARMRK|BRKINT);
648 nstop = (termios->c_cflag & CSTOPB) ? 2 : 1;
652 rate = uart_get_baud_rate(port, termios, old, 0,
659 uart_update_timeout(port, termios->c_cflag, rate);
666 if ((termios->c_cflag & CREAD) == 0)