taglinefilesource code
c_cflag67include/linux/termios.hunsigned short c_cflag;    /* control mode flags */
c_cflag77include/linux/termios.htcflag_t c_cflag;    /* control mode flags */
c_cflag149include/linux/tty.h#define _C_FLAG(tty,f)  ((tty)->termios->c_cflag & f)
c_cflag182include/linux/tty.h#define C_SPEED(tty)  ((tty)->termios->c_cflag & CBAUD)
c_cflag597kernel/chr_drv/serial.cif (info->tty && !(info->tty->termios->c_cflag & HUPCL))
c_cflag627kernel/chr_drv/serial.ccflag = info->tty->termios->c_cflag;
c_cflag1002kernel/chr_drv/serial.ctty->termios->c_cflag =
c_cflag1003kernel/chr_drv/serial.c((tty->termios->c_cflag & ~CLOCAL) |
c_cflag1036kernel/chr_drv/serial.cif (tty->termios->c_cflag == old_termios->c_cflag)
c_cflag1043kernel/chr_drv/serial.cif ((old_termios->c_cflag & CRTSCTS) &&
c_cflag1044kernel/chr_drv/serial.c!(tty->termios->c_cflag & CRTSCTS)) {
c_cflag1049kernel/chr_drv/serial.cif (!(old_termios->c_cflag & CLOCAL) &&
c_cflag1050kernel/chr_drv/serial.c(tty->termios->c_cflag & CLOCAL))
c_cflag1450kernel/chr_drv/tty_io.ctp->c_cflag = B38400 | CS8 | CREAD;
c_cflag1454kernel/chr_drv/tty_io.ctp->c_cflag = B2400 | CS8 | CREAD | HUPCL | CLOCAL;
c_cflag1456kernel/chr_drv/tty_io.ctp->c_cflag = B9600 | CS8 | CREAD;
c_cflag1460kernel/chr_drv/tty_io.ctp->c_cflag = B38400 | CS8 | CREAD;
c_cflag186kernel/chr_drv/tty_ioctl.ctmp_termio.c_cflag = tty->termios->c_cflag;
c_cflag229kernel/chr_drv/tty_ioctl.c*(unsigned short *)&tty->termios->c_cflag = tmp_termio.c_cflag;