Searched refs:clp (Results 1 - 8 of 8) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dtty_subr.c104 clalloc(struct clist *clp, int size, int quot) argument
106 MALLOC_ZONE(clp->c_cs, u_char *, size, M_TTYS, M_WAITOK);
107 if (!clp->c_cs)
109 bzero(clp->c_cs, size);
112 MALLOC_ZONE(clp->c_cq, u_char *, QMEM(size), M_TTYS, M_WAITOK);
113 if (!clp->c_cq) {
114 FREE_ZONE(clp->c_cs, size, M_TTYS);
117 bzero(clp->c_cs, QMEM(size));
119 clp->c_cq = (u_char *)0;
121 clp
129 clfree(struct clist *clp) argument
143 getc(struct clist *clp) argument
173 q_to_b(struct clist *clp, u_char *cp, int count) argument
203 ndqb(struct clist *clp, int flag) argument
242 ndflush(struct clist *clp, int count) argument
272 putc(int c, struct clist *clp) argument
358 b_to_q(const u_char *cp, int count, struct clist *clp) argument
418 nextc(struct clist *clp, u_char *cp, int *c) argument
456 firstc(struct clist *clp, int *c) argument
481 unputc(struct clist *clp) argument
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dtty.h276 u_char *firstc (struct clist *clp, int *c);
281 int clalloc(struct clist *clp, int size, int quot);
282 void clfree(struct clist *clp);
/darwin-on-arm/xnu/bsd/net/pktsched/
H A Dpktsched_cbq.c195 struct rm_class **clp)
317 if (clp != NULL)
318 *clp = cl;
191 cbq_add_queue(cbq_state_t *cbqp, u_int32_t qlimit, u_int32_t priority, u_int32_t minburst, u_int32_t maxburst, u_int32_t pktsize, u_int32_t maxpktsize, u_int32_t ns_per_byte, u_int32_t maxidle, int minidle, u_int32_t offtime, u_int32_t flags, u_int32_t parent_qid, u_int32_t qid, struct rm_class **clp) argument
H A Dpktsched_fairq.c316 struct fairq_class **clp)
337 if (clp != NULL)
338 *clp = cl;
313 fairq_add_queue(struct fairq_if *fif, int priority, u_int32_t qlimit, u_int64_t bandwidth, u_int32_t nbuckets, int flags, u_int64_t hogs_m1, u_int64_t lssc_m1, u_int64_t lssc_d, u_int64_t lssc_m2, u_int32_t qid, struct fairq_class **clp) argument
H A Dpktsched_priq.c286 int flags, u_int32_t qid, struct priq_class **clp)
304 if (clp != NULL)
305 *clp = cl;
285 priq_add_queue(struct priq_if *pif, int priority, u_int32_t qlimit, int flags, u_int32_t qid, struct priq_class **clp) argument
H A Dpktsched_tcq.c258 int flags, u_int32_t qid, struct tcq_class **clp)
276 if (clp != NULL)
277 *clp = cl;
257 tcq_add_queue(struct tcq_if *tif, int priority, u_int32_t qlimit, int flags, u_int32_t qid, struct tcq_class **clp) argument
H A Dpktsched_hfsc.c343 struct hfsc_class **clp)
362 if (clp != NULL)
363 *clp = cl;
340 hfsc_add_queue(struct hfsc_if *hif, struct service_curve *rtsc, struct service_curve *lssc, struct service_curve *ulsc, u_int32_t qlimit, int flags, u_int32_t parent_qid, u_int32_t qid, struct hfsc_class **clp) argument
H A Dpktsched_qfq.c385 u_int32_t maxsz, u_int32_t flags, u_int32_t qid, struct qfq_class **clp)
410 if (clp != NULL)
411 *clp = cl;
384 qfq_add_queue(struct qfq_if *qif, u_int32_t qlimit, u_int32_t weight, u_int32_t maxsz, u_int32_t flags, u_int32_t qid, struct qfq_class **clp) argument

Completed in 86 milliseconds