Lines Matching defs:nextcl
175 #define CALLOUT_LIST_BEFORE(cl, nextcl) \
177 (cl)->cl_prev = (nextcl)->cl_prev; \
178 (cl)->cl_next = (nextcl); \
179 (nextcl)->cl_prev = (cl); \
359 callout_list_t *nextcl;
363 nextcl = ct->ct_queue.ch_head;
364 if ((nextcl == NULL) || (expiration < nextcl->cl_expiration)) {
369 while (nextcl != NULL) {
370 if (expiration < nextcl->cl_expiration) {
371 CALLOUT_LIST_BEFORE(cl, nextcl);
374 nextcl = nextcl->cl_next;