tag | line | file | source code |
c_cc | 71 | include/linux/tty.h | #define INTR_CHAR(tty) ((tty)->termios.c_cc[VINTR]) |
c_cc | 72 | include/linux/tty.h | #define QUIT_CHAR(tty) ((tty)->termios.c_cc[VQUIT]) |
c_cc | 73 | include/linux/tty.h | #define ERASE_CHAR(tty) ((tty)->termios.c_cc[VERASE]) |
c_cc | 74 | include/linux/tty.h | #define KILL_CHAR(tty) ((tty)->termios.c_cc[VKILL]) |
c_cc | 75 | include/linux/tty.h | #define EOF_CHAR(tty) ((tty)->termios.c_cc[VEOF]) |
c_cc | 76 | include/linux/tty.h | #define START_CHAR(tty) ((tty)->termios.c_cc[VSTART]) |
c_cc | 77 | include/linux/tty.h | #define STOP_CHAR(tty) ((tty)->termios.c_cc[VSTOP]) |
c_cc | 78 | include/linux/tty.h | #define SUSPEND_CHAR(tty) ((tty)->termios.c_cc[VSUSP]) |
c_cc | 53 | include/termios.h | unsigned char c_cc[NCC]; /* control characters */ |
c_cc | 63 | include/termios.h | cc_t c_cc[NCCS]; /* control characters */ |
c_cc | 260 | kernel/chr_drv/tty_io.c | time = 10L*tty->termios.c_cc[VTIME]; |
c_cc | 261 | kernel/chr_drv/tty_io.c | minimum = tty->termios.c_cc[VMIN]; |
c_cc | 155 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_cc[i] = tty->termios.c_cc[i]; |
c_cc | 186 | kernel/chr_drv/tty_ioctl.c | tty->termios.c_cc[i] = tmp_termio.c_cc[i]; |