Lines Matching refs:cflag

1072 		tcflag_t cflag;  in cp210x_get_termios()  local
1073 cflag = 0; in cp210x_get_termios()
1074 cp210x_get_termios_port(port, &cflag, &baud); in cp210x_get_termios()
1086 tcflag_t cflag; in cp210x_get_termios_port() local
1098 cflag = *cflagp; in cp210x_get_termios_port()
1101 cflag &= ~CSIZE; in cp210x_get_termios_port()
1105 cflag |= CS5; in cp210x_get_termios_port()
1109 cflag |= CS6; in cp210x_get_termios_port()
1113 cflag |= CS7; in cp210x_get_termios_port()
1117 cflag |= CS8; in cp210x_get_termios_port()
1121 cflag |= CS8; in cp210x_get_termios_port()
1128 cflag |= CS8; in cp210x_get_termios_port()
1138 cflag &= ~PARENB; in cp210x_get_termios_port()
1142 cflag |= (PARENB|PARODD); in cp210x_get_termios_port()
1146 cflag &= ~PARODD; in cp210x_get_termios_port()
1147 cflag |= PARENB; in cp210x_get_termios_port()
1151 cflag |= (PARENB|PARODD|CMSPAR); in cp210x_get_termios_port()
1155 cflag &= ~PARODD; in cp210x_get_termios_port()
1156 cflag |= (PARENB|CMSPAR); in cp210x_get_termios_port()
1160 cflag &= ~PARENB; in cp210x_get_termios_port()
1166 cflag &= ~CSTOPB; in cp210x_get_termios_port()
1178 cflag |= CSTOPB; in cp210x_get_termios_port()
1208 cflag |= CRTSCTS; in cp210x_get_termios_port()
1211 cflag &= ~CRTSCTS; in cp210x_get_termios_port()
1214 *cflagp = cflag; in cp210x_get_termios_port()
1384 unsigned int cflag, old_cflag; in cp210x_set_termios() local
1387 cflag = tty->termios.c_cflag; in cp210x_set_termios()
1394 if ((cflag & CSIZE) != (old_cflag & CSIZE)) { in cp210x_set_termios()
1397 switch (cflag & CSIZE) { in cp210x_set_termios()
1420 if ((cflag & (PARENB|PARODD|CMSPAR)) != in cp210x_set_termios()
1424 if (cflag & PARENB) { in cp210x_set_termios()
1425 if (cflag & CMSPAR) { in cp210x_set_termios()
1426 if (cflag & PARODD) { in cp210x_set_termios()
1434 if (cflag & PARODD) { in cp210x_set_termios()
1447 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { in cp210x_set_termios()
1450 if (cflag & CSTOPB) { in cp210x_set_termios()
1461 if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) { in cp210x_set_termios()
1478 if (cflag & CRTSCTS) { in cp210x_set_termios()