Lines Matching defs:termios
301 struct ktermios *termios, struct ktermios *old)
306 switch (termios->c_cflag & CSIZE) {
322 if (termios->c_cflag & CSTOPB)
325 if (termios->c_cflag & PARENB) {
327 if (termios->c_cflag & PARODD)
332 (termios->c_cflag & CRTSCTS))
335 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk);
342 uart_update_timeout(port, termios->c_cflag, baud);
345 if (termios->c_iflag & INPCK)
349 if (termios->c_iflag & IGNPAR)
351 if ((termios->c_iflag & IGNBRK) && (termios->c_iflag & IGNPAR))
353 if ((termios->c_cflag & CREAD) == 0)