tag | line | file | source code |
c_iflag | 65 | include/linux/termios.h | unsigned short c_iflag; /* input mode flags */ |
c_iflag | 75 | include/linux/termios.h | tcflag_t c_iflag; /* input mode flags */ |
c_iflag | 149 | include/linux/tty.h | #define _I_FLAG(tty,f) ((tty)->termios->c_iflag & f) |
c_iflag | 749 | kernel/chr_drv/serial.c | if (tty->termios->c_iflag & IXOFF) { |
c_iflag | 759 | kernel/chr_drv/serial.c | if (tty->termios->c_iflag & IXOFF) { |
c_iflag | 1482 | kernel/chr_drv/tty_io.c | tp->c_iflag = ICRNL | IXON; |
c_iflag | 1492 | kernel/chr_drv/tty_io.c | tp->c_iflag = ICRNL | IXON; |
c_iflag | 184 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_iflag = tty->termios->c_iflag; |
c_iflag | 213 | kernel/chr_drv/tty_ioctl.c | if ((tmp_termio.c_iflag & IXON) && |
c_iflag | 214 | kernel/chr_drv/tty_ioctl.c | ~(tty->termios->c_iflag & IXON)) |
c_iflag | 220 | kernel/chr_drv/tty_ioctl.c | if (~(tmp_termio.c_iflag & IXON) && |
c_iflag | 221 | kernel/chr_drv/tty_ioctl.c | (tty->termios->c_iflag & IXON)) |
c_iflag | 227 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios->c_iflag = tmp_termio.c_iflag; |