Searched refs:c_cf (Results 1 - 4 of 4) sorted by relevance

/xnu-2422.115.4/bsd/kern/
H A Dtty_subr.c121 clp->c_cf = clp->c_cl = (u_char *)0;
150 c = *clp->c_cf & 0xff;
153 if (isset(clp->c_cq, clp->c_cf - clp->c_cs) )
156 if (*(clp->c_cf - clp->c_cs + clp->c_cq))
160 if (++clp->c_cf == clp->c_ce)
161 clp->c_cf = clp->c_cs;
163 clp->c_cf = clp->c_cl = (u_char *)0;
180 cc = clp->c_cl - clp->c_cf;
181 if (clp->c_cf >= clp->c_cl)
182 cc = clp->c_ce - clp->c_cf;
[all...]
H A Dtty_ptmx.c1019 tp->t_rawq.c_cf = tp->t_rawq.c_cl = 0;
H A Dtty.c1921 tp->t_rawq.c_cf = tp->t_rawq.c_cl = NULL;
/xnu-2422.115.4/bsd/sys/
H A Dtty.h85 * NetBSD Clists are actually ring buffers. The c_cc, c_cf, c_cl fields have
95 u_char *c_cf; /* points to first character */ member in struct:clist
260 #define TSA_HUP_OR_INPUT(tp) ((void *)&(tp)->t_rawq.c_cf)
263 #define TSA_PTC_READ(tp) ((void *)&(tp)->t_outq.c_cf)

Completed in 16 milliseconds