tag | line | file | source code |
c_cc | 742 | drivers/char/tty_io.c | time = 10L*tty->termios->c_cc[VTIME]; |
c_cc | 743 | drivers/char/tty_io.c | minimum = tty->termios->c_cc[VMIN]; |
c_cc | 1612 | drivers/char/tty_io.c | memcpy(tp->c_cc, INIT_C_CC, NCCS); |
c_cc | 154 | drivers/char/tty_ioctl.c | termios->c_cc[i] = locked->c_cc[i] ? |
c_cc | 155 | drivers/char/tty_ioctl.c | old->c_cc[i] : termios->c_cc[i]; |
c_cc | 202 | drivers/char/tty_ioctl.c | (old_termios.c_cc[VSTOP] == '\023') && |
c_cc | 203 | drivers/char/tty_ioctl.c | (old_termios.c_cc[VSTART] == '\021'); |
c_cc | 206 | drivers/char/tty_ioctl.c | (tty->termios->c_cc[VSTOP] == '\023') && |
c_cc | 207 | drivers/char/tty_ioctl.c | (tty->termios->c_cc[VSTART] == '\021'); |
c_cc | 257 | drivers/char/tty_ioctl.c | tmp_termio.c_cc[i] = tty->termios->c_cc[i]; |
c_cc | 281 | drivers/char/tty_ioctl.c | memcpy(tty->termios->c_cc, tmp_termio.c_cc, NCC); |
c_cc | 286 | drivers/char/tty_ioctl.c | (old_termios.c_cc[VSTOP] == '\023') && |
c_cc | 287 | drivers/char/tty_ioctl.c | (old_termios.c_cc[VSTART] == '\021'); |
c_cc | 290 | drivers/char/tty_ioctl.c | (tty->termios->c_cc[VSTOP] == '\023') && |
c_cc | 291 | drivers/char/tty_ioctl.c | (tty->termios->c_cc[VSTART] == '\021'); |
c_cc | 75 | include/linux/termios.h | unsigned char c_cc[NCC]; /* control characters */ |
c_cc | 85 | include/linux/termios.h | cc_t c_cc[NCCS]; /* control characters */ |
c_cc | 147 | include/linux/tty.h | #define INTR_CHAR(tty) ((tty)->termios->c_cc[VINTR]) |
c_cc | 148 | include/linux/tty.h | #define QUIT_CHAR(tty) ((tty)->termios->c_cc[VQUIT]) |
c_cc | 149 | include/linux/tty.h | #define ERASE_CHAR(tty) ((tty)->termios->c_cc[VERASE]) |
c_cc | 150 | include/linux/tty.h | #define KILL_CHAR(tty) ((tty)->termios->c_cc[VKILL]) |
c_cc | 151 | include/linux/tty.h | #define WERASE_CHAR(tty) ((tty)->termios->c_cc[VWERASE]) |
c_cc | 152 | include/linux/tty.h | #define EOF_CHAR(tty) ((tty)->termios->c_cc[VEOF]) |
c_cc | 153 | include/linux/tty.h | #define START_CHAR(tty) ((tty)->termios->c_cc[VSTART]) |
c_cc | 154 | include/linux/tty.h | #define STOP_CHAR(tty) ((tty)->termios->c_cc[VSTOP]) |
c_cc | 155 | include/linux/tty.h | #define SUSPEND_CHAR(tty) ((tty)->termios->c_cc[VSUSP]) |
c_cc | 156 | include/linux/tty.h | #define LNEXT_CHAR(tty) ((tty)->termios->c_cc[VLNEXT]) |