Searched refs:nextcl (Results 1 – 1 of 1) sorted by relevance
176 #define CALLOUT_LIST_BEFORE(cl, nextcl) \ argument178 (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() local364 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()[all …]