Lines Matching refs:nextcl
176 #define CALLOUT_LIST_BEFORE(cl, nextcl) \ argument
178 (cl)->cl_prev = (nextcl)->cl_prev; \
179 (cl)->cl_next = (nextcl); \
180 (nextcl)->cl_prev = (cl); \
360 callout_list_t *nextcl; in callout_queue_add() local
364 nextcl = ct->ct_queue.ch_head; in callout_queue_add()
365 if ((nextcl == NULL) || (expiration < nextcl->cl_expiration)) { in callout_queue_add()
370 while (nextcl != NULL) { in callout_queue_add()
371 if (expiration < nextcl->cl_expiration) { in callout_queue_add()
372 CALLOUT_LIST_BEFORE(cl, nextcl); in callout_queue_add()
375 nextcl = nextcl->cl_next; in callout_queue_add()