Lines Matching refs:cflag

898 		tcflag_t cflag;  in cp210x_get_termios()  local
899 cflag = 0; in cp210x_get_termios()
900 cp210x_get_termios_port(port, &cflag, &baud); in cp210x_get_termios()
912 tcflag_t cflag; in cp210x_get_termios_port() local
923 cflag = *cflagp; in cp210x_get_termios_port()
926 cflag &= ~CSIZE; in cp210x_get_termios_port()
930 cflag |= CS5; in cp210x_get_termios_port()
934 cflag |= CS6; in cp210x_get_termios_port()
938 cflag |= CS7; in cp210x_get_termios_port()
942 cflag |= CS8; in cp210x_get_termios_port()
946 cflag |= CS8; in cp210x_get_termios_port()
953 cflag |= CS8; in cp210x_get_termios_port()
963 cflag &= ~PARENB; in cp210x_get_termios_port()
967 cflag |= (PARENB|PARODD); in cp210x_get_termios_port()
971 cflag &= ~PARODD; in cp210x_get_termios_port()
972 cflag |= PARENB; in cp210x_get_termios_port()
976 cflag |= (PARENB|PARODD|CMSPAR); in cp210x_get_termios_port()
980 cflag &= ~PARODD; in cp210x_get_termios_port()
981 cflag |= (PARENB|CMSPAR); in cp210x_get_termios_port()
985 cflag &= ~PARENB; in cp210x_get_termios_port()
991 cflag &= ~CSTOPB; in cp210x_get_termios_port()
1003 cflag |= CSTOPB; in cp210x_get_termios_port()
1017 cflag |= CRTSCTS; in cp210x_get_termios_port()
1020 cflag &= ~CRTSCTS; in cp210x_get_termios_port()
1023 *cflagp = cflag; in cp210x_get_termios_port()
1154 unsigned int cflag, old_cflag; in cp210x_set_termios() local
1157 cflag = tty->termios.c_cflag; in cp210x_set_termios()
1164 if ((cflag & CSIZE) != (old_cflag & CSIZE)) { in cp210x_set_termios()
1167 switch (cflag & CSIZE) { in cp210x_set_termios()
1190 if ((cflag & (PARENB|PARODD|CMSPAR)) != in cp210x_set_termios()
1194 if (cflag & PARENB) { in cp210x_set_termios()
1195 if (cflag & CMSPAR) { in cp210x_set_termios()
1196 if (cflag & PARODD) { in cp210x_set_termios()
1204 if (cflag & PARODD) { in cp210x_set_termios()
1217 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { in cp210x_set_termios()
1220 if (cflag & CSTOPB) { in cp210x_set_termios()
1231 if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) { in cp210x_set_termios()
1248 if (cflag & CRTSCTS) { in cp210x_set_termios()