Lines Matching refs:cnext
81 #define CALLOUT_HASH_INSERT(hash, cp, cnext, cprev) \ argument
86 cp->cnext = hashp->ch_head; \
90 cp->cnext->cprev = cp; \
94 #define CALLOUT_HASH_APPEND(hash, cp, cnext, cprev) \ argument
98 cp->cnext = NULL; \
103 cp->cprev->cnext = cp; \
107 #define CALLOUT_HASH_DELETE(hash, cp, cnext, cprev) \ argument
111 if (cp->cnext == NULL) \
114 cp->cnext->cprev = cp->cprev; \
116 hashp->ch_head = cp->cnext; \
118 cp->cprev->cnext = cp->cnext; \
1455 callout_t *cp, *cnext; in callout_list_expire() local
1460 for (cp = cl->cl_callouts.ch_head; cp != NULL; cp = cnext) { in callout_list_expire()
1467 cnext = cp->c_clnext; in callout_list_expire()
1492 cnext = cp->c_clnext; in callout_list_expire()