taglinefilesource code
c_oflag71include/linux/termios.hunsigned short c_oflag;    /* output mode flags */
c_oflag81include/linux/termios.htcflag_t c_oflag;    /* output mode flags */
c_oflag160include/linux/tty.h#define _O_FLAG(tty,f)  ((tty)->termios->c_oflag & f)
c_oflag1602kernel/chr_drv/tty_io.ctp->c_oflag = OPOST | ONLCR;
c_oflag1608kernel/chr_drv/tty_io.ctp->c_oflag = OPOST | ONLCR | XTABS;
c_oflag1613kernel/chr_drv/tty_io.ctp->c_oflag = OPOST | ONLCR;
c_oflag144kernel/chr_drv/tty_ioctl.cNOSET_MASK(termios->c_oflag, old->c_oflag, locked->c_oflag);
c_oflag241kernel/chr_drv/tty_ioctl.ctmp_termio.c_oflag = tty->termios->c_oflag;
c_oflag269kernel/chr_drv/tty_ioctl.c*(unsigned short *)&tty->termios->c_oflag = tmp_termio.c_oflag;