tag | line | file | source code |
c_cc | 64 | include/linux/termios.h | unsigned char c_cc[NCC]; /* control characters */ |
c_cc | 74 | include/linux/termios.h | cc_t c_cc[NCCS]; /* control characters */ |
c_cc | 106 | include/linux/tty.h | #define INTR_CHAR(tty) ((tty)->termios.c_cc[VINTR]) |
c_cc | 107 | include/linux/tty.h | #define QUIT_CHAR(tty) ((tty)->termios.c_cc[VQUIT]) |
c_cc | 108 | include/linux/tty.h | #define ERASE_CHAR(tty) ((tty)->termios.c_cc[VERASE]) |
c_cc | 109 | include/linux/tty.h | #define KILL_CHAR(tty) ((tty)->termios.c_cc[VKILL]) |
c_cc | 110 | include/linux/tty.h | #define EOF_CHAR(tty) ((tty)->termios.c_cc[VEOF]) |
c_cc | 111 | include/linux/tty.h | #define START_CHAR(tty) ((tty)->termios.c_cc[VSTART]) |
c_cc | 112 | include/linux/tty.h | #define STOP_CHAR(tty) ((tty)->termios.c_cc[VSTOP]) |
c_cc | 113 | include/linux/tty.h | #define SUSPEND_CHAR(tty) ((tty)->termios.c_cc[VSUSP]) |
c_cc | 326 | kernel/chr_drv/tty_io.c | time = 10L*tty->termios.c_cc[VTIME]; |
c_cc | 327 | kernel/chr_drv/tty_io.c | minimum = tty->termios.c_cc[VMIN]; |
c_cc | 156 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_cc[i] = tty->termios.c_cc[i]; |
c_cc | 188 | kernel/chr_drv/tty_ioctl.c | tty->termios.c_cc[i] = tmp_termio.c_cc[i]; |