tag | line | file | source code |
c_cc | 1570 | drivers/char/tty_io.c | memcpy(tty_std_termios.c_cc, INIT_C_CC, NCCS); |
c_cc | 85 | drivers/char/tty_ioctl.c | termios->c_cc[i] = locked->c_cc[i] ? |
c_cc | 86 | drivers/char/tty_ioctl.c | old->c_cc[i] : termios->c_cc[i]; |
c_cc | 110 | drivers/char/tty_ioctl.c | memcpy(&tmp_termios.c_cc, &tmp_termio.c_cc, NCC); |
c_cc | 141 | drivers/char/tty_ioctl.c | (old_termios.c_cc[VSTOP] == '\023') && |
c_cc | 142 | drivers/char/tty_ioctl.c | (old_termios.c_cc[VSTART] == '\021')); |
c_cc | 179 | drivers/char/tty_ioctl.c | tmp_termio.c_cc[i] = tty->termios->c_cc[i]; |
c_cc | 79 | include/linux/termios.h | unsigned char c_cc[NCC]; /* control characters */ |
c_cc | 89 | include/linux/termios.h | cc_t c_cc[NCCS]; /* control characters */ |
c_cc | 94 | include/linux/tty.h | #define INTR_CHAR(tty) ((tty)->termios->c_cc[VINTR]) |
c_cc | 95 | include/linux/tty.h | #define QUIT_CHAR(tty) ((tty)->termios->c_cc[VQUIT]) |
c_cc | 96 | include/linux/tty.h | #define ERASE_CHAR(tty) ((tty)->termios->c_cc[VERASE]) |
c_cc | 97 | include/linux/tty.h | #define KILL_CHAR(tty) ((tty)->termios->c_cc[VKILL]) |
c_cc | 98 | include/linux/tty.h | #define EOF_CHAR(tty) ((tty)->termios->c_cc[VEOF]) |
c_cc | 99 | include/linux/tty.h | #define TIME_CHAR(tty) ((tty)->termios->c_cc[VTIME]) |
c_cc | 100 | include/linux/tty.h | #define MIN_CHAR(tty) ((tty)->termios->c_cc[VMIN]) |
c_cc | 101 | include/linux/tty.h | #define SWTC_CHAR(tty) ((tty)->termios->c_cc[VSWTC]) |
c_cc | 102 | include/linux/tty.h | #define START_CHAR(tty) ((tty)->termios->c_cc[VSTART]) |
c_cc | 103 | include/linux/tty.h | #define STOP_CHAR(tty) ((tty)->termios->c_cc[VSTOP]) |
c_cc | 104 | include/linux/tty.h | #define SUSP_CHAR(tty) ((tty)->termios->c_cc[VSUSP]) |
c_cc | 105 | include/linux/tty.h | #define EOL_CHAR(tty) ((tty)->termios->c_cc[VEOL]) |
c_cc | 106 | include/linux/tty.h | #define REPRINT_CHAR(tty) ((tty)->termios->c_cc[VREPRINT]) |
c_cc | 107 | include/linux/tty.h | #define DISCARD_CHAR(tty) ((tty)->termios->c_cc[VDISCARD]) |
c_cc | 108 | include/linux/tty.h | #define WERASE_CHAR(tty) ((tty)->termios->c_cc[VWERASE]) |
c_cc | 109 | include/linux/tty.h | #define LNEXT_CHAR(tty) ((tty)->termios->c_cc[VLNEXT]) |
c_cc | 110 | include/linux/tty.h | #define EOL2_CHAR(tty) ((tty)->termios->c_cc[VEOL2]) |