Lines Matching defs:termios
299 struct ktermios *termios,
305 switch (termios->c_cflag & CSIZE) {
321 if (termios->c_cflag & CSTOPB)
324 if (termios->c_cflag & PARENB) {
326 if (termios->c_cflag & PARODD)
331 (termios->c_cflag & CRTSCTS))
334 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk);
341 uart_update_timeout(port, termios->c_cflag, baud);
344 if (termios->c_iflag & INPCK)
348 if (termios->c_iflag & IGNPAR)
350 if ((termios->c_iflag & IGNBRK) && (termios->c_iflag & IGNPAR))
352 if ((termios->c_cflag & CREAD) == 0)