Lines Matching defs:termios
661 struct ktermios *termios,
670 if ((termios->c_cflag & CSIZE) != CS8) {
672 termios->c_cflag &= ~CSIZE;
673 termios->c_cflag |= CS8;
675 if (termios->c_iflag & (INPCK | PARMRK))
677 if (termios->c_iflag & BRKINT)
679 termios->c_iflag &= ~(INPCK|PARMRK|BRKINT);
682 nstop = (termios->c_cflag & CSTOPB) ? 2 : 1;
686 rate = uart_get_baud_rate(port, termios, old, 0, ssp->clkin_rate / 16);
692 uart_update_timeout(port, termios->c_cflag, rate);
699 if ((termios->c_cflag & CREAD) == 0)