Lines Matching defs:termios
314 struct ktermios *termios,
320 /* Set termios to what the hardware supports */
321 termios->c_iflag &= ~BRKINT;
322 termios->c_cflag &= ~(CSTOPB | PARENB | PARODD | CSIZE);
323 termios->c_cflag |= pdata->cflags & (PARENB | PARODD | CSIZE);
324 tty_termios_encode_baud_rate(termios, pdata->baud, pdata->baud);
331 if (termios->c_iflag & INPCK)
336 if (termios->c_iflag & IGNPAR)
341 if ((termios->c_cflag & CREAD) == 0)
347 uart_update_timeout(port, termios->c_cflag, pdata->baud);