Home
last modified time | relevance | path

Searched refs:t_cc (Results 1 – 4 of 4) sorted by relevance

/xnu-11417.121.6/bsd/kern/ !
H A Dtty.c529 cc = tp->t_cc; in ttyinput()
1392 if (t->c_cc[VMIN] != tp->t_cc[VMIN] || in ttioctl_locked()
1393 t->c_cc[VTIME] != tp->t_cc[VTIME]) { in ttioctl_locked()
1396 bcopy(t->c_cc, tp->t_cc, sizeof(t->c_cc)); in ttioctl_locked()
1736 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0) { in ttnread()
1923 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTOP] != _POSIX_VDISABLE && in ttyblock()
1924 putc(tp->t_cc[VSTOP], &tp->t_outq) != 0) { in ttyblock()
1944 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTART] != _POSIX_VDISABLE && in ttyunblock()
1945 putc(tp->t_cc[VSTART], &tp->t_outq) != 0) { in ttyunblock()
2105 cc_t *cc = tp->t_cc; in ttread()
[all …]
H A Dtty_compat.c421 cc_t *cc = tp->t_cc; in ttcompat()
443 cc_t *cc = tp->t_cc; in ttcompat()
460 cc_t *cc = tp->t_cc; in ttcompat()
H A Dtty_dev.c981 u_char *cc = tp->t_cc;
/xnu-11417.121.6/bsd/sys/ !
H A Dtty.h158 #define t_cc t_termios.c_cc macro