Searched refs:CCEQ (Results 1 – 3 of 3) sorted by relevance
| /dragonfly/sys/kern/ |
| HD | tty.c | 493 if (CCEQ(cc[VLNEXT], c)) { in ttyinput() 504 if (CCEQ(cc[VDISCARD], c)) { in ttyinput() 521 if (CCEQ(cc[VINTR], c) || CCEQ(cc[VQUIT], c)) { in ttyinput() 526 CCEQ(cc[VINTR], c) ? SIGINT : SIGQUIT, 1); in ttyinput() 529 if (CCEQ(cc[VSUSP], c)) { in ttyinput() 541 if (CCEQ(cc[VSTOP], c)) { in ttyinput() 548 if (!CCEQ(cc[VSTART], c)) { in ttyinput() 557 if (CCEQ(cc[VSTART], c)) in ttyinput() 581 if (CCEQ(cc[VERASE], c) || CCEQ(cc[VERASE2], c) ) { in ttyinput() 589 if (CCEQ(cc[VKILL], c)) { in ttyinput() [all …]
|
| HD | tty_pty.c | 1305 stop = (tp->t_iflag & IXON) && CCEQ(cc[VSTOP], CTRL('s')) in ptyioctl() 1306 && CCEQ(cc[VSTART], CTRL('q')); in ptyioctl()
|
| /dragonfly/sys/sys/ |
| HD | _termios.h | 233 #define CCEQ(val, c) ((c) == (val) ? (val) != _POSIX_VDISABLE : 0) macro
|