Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/kern/
H A Dtty.c469 cc = tp->t_cc; in ttyinput()
1282 if (t->c_cc[VMIN] != tp->t_cc[VMIN] || in ttioctl_locked()
1283 t->c_cc[VTIME] != tp->t_cc[VTIME]) { in ttioctl_locked()
1286 bcopy(t->c_cc, tp->t_cc, sizeof(t->c_cc)); in ttioctl_locked()
1626 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0) { in ttnread()
1813 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTOP] != _POSIX_VDISABLE && in ttyblock()
1814 putc(tp->t_cc[VSTOP], &tp->t_outq) != 0) { in ttyblock()
1834 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTART] != _POSIX_VDISABLE && in ttyunblock()
1835 putc(tp->t_cc[VSTART], &tp->t_outq) != 0) { in ttyunblock()
1995 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.c951 u_char *cc = tp->t_cc;
/xnu-8796.121.2/bsd/sys/
H A Dtty.h157 #define t_cc t_termios.c_cc macro