Searched refs:c_cq (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dtty_subr.c77 * it can free c_cq and set it to NULL. This speeds things up,
112 MALLOC_ZONE(clp->c_cq, u_char *, QMEM(size), M_TTYS, M_WAITOK);
113 if (!clp->c_cq) {
119 clp->c_cq = (u_char *)0;
133 if(clp->c_cq)
134 FREE_ZONE(clp->c_cq, QMEM(clp->c_cn), M_TTYS);
135 clp->c_cs = clp->c_cq = (u_char *)0;
151 if (clp->c_cq) {
153 if (isset(clp->c_cq, clp->c_cf - clp->c_cs) )
156 if (*(clp->c_cf - clp->c_cs + clp->c_cq))
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dtty.h87 * if c_cq is NULL, the ring buffer has no TTY_QUOTE functionality
90 * *DON'T* play with c_cs, c_ce, c_cq, or c_cl outside tty_subr.c!!!
99 u_char *c_cq; /* N bits/bytes long, see tty_subr.c */ member in struct:clist

Completed in 67 milliseconds