taglinefilesource code
c_cflag72include/linux/termios.hunsigned short c_cflag;    /* control mode flags */
c_cflag82include/linux/termios.htcflag_t c_cflag;    /* control mode flags */
c_cflag161include/linux/tty.h#define _C_FLAG(tty,f)  ((tty)->termios->c_cflag & f)
c_cflag196include/linux/tty.h#define C_SPEED(tty)  ((tty)->termios->c_cflag & CBAUD)
c_cflag824kernel/chr_drv/serial.cif (info->tty && !(info->tty->termios->c_cflag & HUPCL))
c_cflag854kernel/chr_drv/serial.ccflag = info->tty->termios->c_cflag;
c_cflag1339kernel/chr_drv/serial.ctty->termios->c_cflag =
c_cflag1340kernel/chr_drv/serial.c((tty->termios->c_cflag & ~CLOCAL) |
c_cflag1391kernel/chr_drv/serial.cif (tty->termios->c_cflag == old_termios->c_cflag)
c_cflag1398kernel/chr_drv/serial.cif ((old_termios->c_cflag & CRTSCTS) &&
c_cflag1399kernel/chr_drv/serial.c!(tty->termios->c_cflag & CRTSCTS)) {
c_cflag1404kernel/chr_drv/serial.cif (!(old_termios->c_cflag & CLOCAL) &&
c_cflag1405kernel/chr_drv/serial.c(tty->termios->c_cflag & CLOCAL))
c_cflag1457kernel/chr_drv/serial.cif (tty->termios->c_cflag & CLOCAL)
c_cflag1603kernel/chr_drv/tty_io.ctp->c_cflag = B38400 | CS8 | CREAD;
c_cflag1607kernel/chr_drv/tty_io.ctp->c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
c_cflag1610kernel/chr_drv/tty_io.ctp->c_cflag = B9600 | CS8 | CREAD;
c_cflag1614kernel/chr_drv/tty_io.ctp->c_cflag = B38400 | CS8 | CREAD;
c_cflag145kernel/chr_drv/tty_ioctl.cNOSET_MASK(termios->c_cflag, old->c_cflag, locked->c_cflag);
c_cflag242kernel/chr_drv/tty_ioctl.ctmp_termio.c_cflag = tty->termios->c_cflag;
c_cflag270kernel/chr_drv/tty_ioctl.c*(unsigned short *)&tty->termios->c_cflag = tmp_termio.c_cflag;