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

/macosx-10.5.8/xnu-1228.15.4/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.c229 bcopy(in->c_cc, out->c_cc, sizeof(in->c_cc));
244 bcopy(in->c_cc, out->c_cc, sizeof(in->c_cc));
369 if ((q)->c_cc) \
370 ndflush(q, (q)->c_cc); \
417 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > I_HIGH_WATE
[all...]
H A Dtty_pty.c310 if (tp->t_canq.c_cc == 0) {
319 while (tp->t_canq.c_cc > 1 && uio_resid(uio) > 0) {
325 cc = min(cc, tp->t_canq.c_cc - 1);
331 if (tp->t_canq.c_cc == 1)
333 if (tp->t_canq.c_cc)
520 if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
596 tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0) {
616 if (tp->t_canq.c_cc == 0) {
621 if (tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHO
[all...]
H A Dtty_ptmx.c656 if (tp->t_canq.c_cc == 0) {
665 while (tp->t_canq.c_cc > 1 && uio_resid(uio) > 0) {
671 cc = min(cc, tp->t_canq.c_cc - 1);
677 if (tp->t_canq.c_cc == 1)
679 if (tp->t_canq.c_cc)
905 if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
989 tp->t_rawq.c_cc = 0;
1008 nread = tp->t_canq.c_cc;
1010 nread += tp->t_rawq.c_cc;
1040 if ((tp->t_outq.c_cc <
[all...]
H A Dtty_compat.c231 term->c_cc[VERASE] = sg->sg_erase;
232 term->c_cc[VKILL] = sg->sg_kill;
247 cc = term->c_cc;
268 cc = term->c_cc;
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dkm.c302 if (tp->t_outq.c_cc == 0)
337 while (tp->t_outq.c_cc > 0) {
347 if (tp->t_outq.c_cc > 0) {
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dkm.c269 if (tp->t_outq.c_cc == 0)
301 while (tp->t_outq.c_cc > 0) {
310 if (tp->t_outq.c_cc > 0) {
/macosx-10.5.8/xnu-1228.15.4/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
H A Dtty.h80 * NetBSD Clists are actually ring buffers. The c_cc, c_cf, c_cl fields have
88 int c_cc; /* count of characters in queue */ member in struct:clist
143 #define t_cc t_termios.c_cc

Completed in 39 milliseconds