Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/kern/
H A Dtty.c468 cc = tp->t_cc; in ttyinput()
1281 if (t->c_cc[VMIN] != tp->t_cc[VMIN] || in ttioctl_locked()
1282 t->c_cc[VTIME] != tp->t_cc[VTIME]) { in ttioctl_locked()
1285 bcopy(t->c_cc, tp->t_cc, sizeof(t->c_cc)); in ttioctl_locked()
1625 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0) { in ttnread()
1812 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTOP] != _POSIX_VDISABLE && in ttyblock()
1813 putc(tp->t_cc[VSTOP], &tp->t_outq) != 0) { in ttyblock()
1833 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTART] != _POSIX_VDISABLE && in ttyunblock()
1834 putc(tp->t_cc[VSTART], &tp->t_outq) != 0) { in ttyunblock()
1994 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.c943 u_char *cc = tp->t_cc;
/xnu-8019.80.24/bsd/sys/
H A Dtty.h157 #define t_cc t_termios.c_cc macro