Home
last modified time | relevance | path

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

/xnu-10002.41.9/bsd/kern/
H A Dtty_subr.c106 clp->c_cs = kalloc_data(size, Z_WAITOK | Z_ZERO); in clalloc()
107 if (!clp->c_cs) { in clalloc()
114 kfree_data(clp->c_cs, size); in clalloc()
122 clp->c_ce = clp->c_cs + size; in clalloc()
131 if (clp->c_cs) { in clfree()
132 kfree_data(clp->c_cs, clp->c_cn); in clfree()
137 clp->c_cs = clp->c_cq = (u_char *)0; in clfree()
156 if (isset(clp->c_cq, clp->c_cf - clp->c_cs)) { in getc()
160 if (*(clp->c_cf - clp->c_cs + clp->c_cq)) { in getc()
166 clp->c_cf = clp->c_cs; in getc()
[all …]
H A Dtty.c1363 if (tp->t_rawq.c_cs && tp->t_canq.c_cs) { in ttioctl_locked()
/xnu-10002.41.9/bsd/sys/
H A Dtty.h99 u_char *c_cs; /* start of ring buffer */ member
/xnu-10002.41.9/tools/lldbmacros/
H A Dprocess.py948 …put to raw queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_rawq.c_cs), tty.t_rawq.c_cs))
949 …put to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_cs))
950 …tput data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_cs))