Searched refs:c_cc (Results 1 - 9 of 9) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dtty_subr.c124 clp->c_cc = 0;
147 if (clp->c_cc == 0)
162 if (--clp->c_cc == 0)
179 while (count > 0 && clp->c_cc > 0) {
188 clp->c_cc -= cc;
193 if (clp->c_cc == 0)
209 if ((cc = clp->c_cc) == 0)
246 if (count == clp->c_cc) {
247 clp->c_cc = 0;
252 while (count > 0 && clp->c_cc >
[all...]
H A Dtty.c248 bcopy(in->c_cc, out->c_cc, sizeof(in->c_cc));
263 bcopy(in->c_cc, out->c_cc, sizeof(in->c_cc));
473 if ((q)->c_cc) \
474 ndflush(q, (q)->c_cc); \
530 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > I_HIGH_WATE
[all...]
H A Dtty_ptmx.c701 if (tp->t_canq.c_cc == 0) {
712 while (tp->t_canq.c_cc > 1 && uio_resid(uio) > 0) {
718 cc = min(cc, tp->t_canq.c_cc - 1);
724 if (tp->t_canq.c_cc == 1)
726 if (tp->t_canq.c_cc)
929 if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
1009 tp->t_rawq.c_cc = 0;
1028 nread = tp->t_canq.c_cc;
1030 nread += tp->t_rawq.c_cc;
1073 if ((tp->t_outq.c_cc <
[all...]
H A Dtty_pty.c318 if (tp->t_canq.c_cc == 0) {
329 while (tp->t_canq.c_cc > 1 && uio_resid(uio) > 0) {
335 cc = min(cc, tp->t_canq.c_cc - 1);
341 if (tp->t_canq.c_cc == 1)
343 if (tp->t_canq.c_cc)
530 if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
608 tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0) {
628 if (tp->t_canq.c_cc == 0) {
633 if (tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHO
[all...]
H A Dtty_compat.c242 term->c_cc[VERASE] = sg->sg_erase;
243 term->c_cc[VKILL] = sg->sg_kill;
258 cc = term->c_cc;
279 cc = term->c_cc;
/darwin-on-arm/xnu/bsd/dev/arm/
H A Dkm.c300 if (tp->t_outq.c_cc == 0)
348 while (tp->t_outq.c_cc > 0) {
372 if (tp->t_outq.c_cc > 0) {
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dkm.c300 if (tp->t_outq.c_cc == 0)
349 while (tp->t_outq.c_cc > 0) {
369 if (tp->t_outq.c_cc > 0) {
/darwin-on-arm/xnu/bsd/sys/
H A Dtermios.h72 * Index into c_cc[] character array.
274 cc_t c_cc[NCCS]; /* control chars */ member in struct:termios
294 cc_t c_cc[NCCS]; /* control chars */ member in struct:user_termios
305 cc_t c_cc[NCCS]; /* control chars */ member in struct:termios32
H A Dtty.h85 * NetBSD Clists are actually ring buffers. The c_cc, c_cf, c_cl fields have
93 int c_cc; /* count of characters in queue */ member in struct:clist
152 #define t_cc t_termios.c_cc

Completed in 34 milliseconds