Lines Matching refs:cflag

1051 		tcflag_t cflag;  in cp210x_get_termios()  local
1052 cflag = 0; in cp210x_get_termios()
1053 cp210x_get_termios_port(port, &cflag, &baud); in cp210x_get_termios()
1065 tcflag_t cflag; in cp210x_get_termios_port() local
1077 cflag = *cflagp; in cp210x_get_termios_port()
1080 cflag &= ~CSIZE; in cp210x_get_termios_port()
1084 cflag |= CS5; in cp210x_get_termios_port()
1088 cflag |= CS6; in cp210x_get_termios_port()
1092 cflag |= CS7; in cp210x_get_termios_port()
1096 cflag |= CS8; in cp210x_get_termios_port()
1100 cflag |= CS8; in cp210x_get_termios_port()
1107 cflag |= CS8; in cp210x_get_termios_port()
1117 cflag &= ~PARENB; in cp210x_get_termios_port()
1121 cflag |= (PARENB|PARODD); in cp210x_get_termios_port()
1125 cflag &= ~PARODD; in cp210x_get_termios_port()
1126 cflag |= PARENB; in cp210x_get_termios_port()
1130 cflag |= (PARENB|PARODD|CMSPAR); in cp210x_get_termios_port()
1134 cflag &= ~PARODD; in cp210x_get_termios_port()
1135 cflag |= (PARENB|CMSPAR); in cp210x_get_termios_port()
1139 cflag &= ~PARENB; in cp210x_get_termios_port()
1145 cflag &= ~CSTOPB; in cp210x_get_termios_port()
1157 cflag |= CSTOPB; in cp210x_get_termios_port()
1187 cflag |= CRTSCTS; in cp210x_get_termios_port()
1190 cflag &= ~CRTSCTS; in cp210x_get_termios_port()
1193 *cflagp = cflag; in cp210x_get_termios_port()
1359 unsigned int cflag, old_cflag; in cp210x_set_termios() local
1362 cflag = tty->termios.c_cflag; in cp210x_set_termios()
1369 if ((cflag & CSIZE) != (old_cflag & CSIZE)) { in cp210x_set_termios()
1372 switch (cflag & CSIZE) { in cp210x_set_termios()
1395 if ((cflag & (PARENB|PARODD|CMSPAR)) != in cp210x_set_termios()
1399 if (cflag & PARENB) { in cp210x_set_termios()
1400 if (cflag & CMSPAR) { in cp210x_set_termios()
1401 if (cflag & PARODD) { in cp210x_set_termios()
1409 if (cflag & PARODD) { in cp210x_set_termios()
1422 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { in cp210x_set_termios()
1425 if (cflag & CSTOPB) { in cp210x_set_termios()
1436 if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) { in cp210x_set_termios()
1453 if (cflag & CRTSCTS) { in cp210x_set_termios()