Lines Matching refs:jobqueue
120 getq(const struct printer *pp, struct jobqueue *(*namelist[])) in getq()
123 register struct jobqueue *q, **queue; in getq()
145 queue = (struct jobqueue **)malloc(arraysz * sizeof(struct jobqueue *)); in getq()
158 entrysz = sizeof(struct jobqueue) - sizeof(q->job_cfname) + in getq()
160 q = (struct jobqueue *)malloc(entrysz); in getq()
172 queue = (struct jobqueue **)reallocarray((char *)queue, in getq()
173 arraysz, 2 * sizeof(struct jobqueue *)); in getq()
184 qsort(queue, nitems, sizeof(struct jobqueue *), compar); in getq()
200 const struct jobqueue *qe1, *qe2; in compar()
202 qe1 = *(const struct jobqueue * const *)p1; in compar()
203 qe2 = *(const struct jobqueue * const *)p2; in compar()