Lines Matching defs:termios
537 struct ktermios *termios,
548 if (termios->c_iflag & INPCK)
552 if (termios->c_iflag & IGNPAR)
556 if ((termios->c_cflag & CREAD) == 0)
571 baud = uart_get_baud_rate(port, termios, old, min_baud, max_baud);
580 termios->c_iflag &= INPCK | IGNPAR;
581 termios->c_iflag |= old->c_iflag & ~(INPCK | IGNPAR);
582 termios->c_cflag &= CREAD | CBAUD;
583 termios->c_cflag |= old->c_cflag & ~(CREAD | CBAUD);
584 termios->c_cflag |= CS8;
588 tty_termios_encode_baud_rate(termios, baud, baud);
589 uart_update_timeout(port, termios->c_cflag, baud);