Lines Matching refs:cnext
82 #define CALLOUT_HASH_INSERT(hash, cp, cnext, cprev) \ argument
87 cp->cnext = hashp->ch_head; \
91 cp->cnext->cprev = cp; \
95 #define CALLOUT_HASH_APPEND(hash, cp, cnext, cprev) \ argument
99 cp->cnext = NULL; \
104 cp->cprev->cnext = cp; \
108 #define CALLOUT_HASH_DELETE(hash, cp, cnext, cprev) \ argument
112 if (cp->cnext == NULL) \
115 cp->cnext->cprev = cp->cprev; \
117 hashp->ch_head = cp->cnext; \
119 cp->cprev->cnext = cp->cnext; \
1456 callout_t *cp, *cnext; in callout_list_expire() local
1461 for (cp = cl->cl_callouts.ch_head; cp != NULL; cp = cnext) { in callout_list_expire()
1468 cnext = cp->c_clnext; in callout_list_expire()
1493 cnext = cp->c_clnext; in callout_list_expire()