Lines Matching refs:c_cflag
274 tty.c_cflag &= ~PARENB; /* Disable parity */ in io_mode()
275 tty.c_cflag |= CS8; /* Set character size = 8 */ in io_mode()
277 tty.c_cflag |= CSTOPB; /* Set two stop bits */ in io_mode()
321 tty.c_cflag &= ~(PARENB); /* Same baud rate, disable parity */ in io_mode()
323 tty.c_cflag &= ~(CSIZE); in io_mode()
324 tty.c_cflag |= CS8; in io_mode()
326 tty.c_cflag |= CSTOPB; /* Set two stop bits */ in io_mode()
357 tty.c_cflag &= ~PARENB; /* Disable parity */ in io_mode()
358 tty.c_cflag |= CS8; /* Set character size = 8 */ in io_mode()
360 tty.c_cflag |= CSTOPB; /* Set two stop bits */ in io_mode()
394 tty.c_cflag &= ~PARENB; /* Same baud rate, disable parity */ in io_mode()
395 tty.c_cflag |= CS8; /* Set character size = 8 */ in io_mode()
397 tty.c_cflag |= CSTOPB; /* Set two stop bits */ in io_mode()
406 Baudrate = getspeed(tty.c_cflag & CBAUD); in io_mode()