• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/ntp/include/

Lines Matching refs:punlinked

33  * UNLINK_HEAD_SLIST(punlinked, listhead, nextlink)
34 * unlink first entry and point punlinked to it, or set punlinked
37 * UNLINK_SLIST(punlinked, listhead, ptounlink, nextlink, entrytype)
38 * unlink entry pointed to by ptounlink. punlinked is set to NULL
42 * UNLINK_EXPR_SLIST(punlinked, listhead, expr, nextlink, entrytype)
47 * punlinked is pointed to the removed entry or NULL if none
88 * UNLINK_FIFO(punlinked, anchor, nextlink)
89 * unlink head entry and point punlinked to it, or set punlinked
170 #define UNLINK_HEAD_SLIST(punlinked, listhead, nextlink) \
172 (punlinked) = (listhead); \
173 if (NULL != (punlinked)) { \
174 (listhead) = (punlinked)->nextlink; \
175 MAYBE_Z_LISTS((punlinked)->nextlink); \
182 #define UNLINK_EXPR_SLIST(punlinked, listhead, expr, nextlink, \
199 (punlinked) = *ppentry; \
200 *ppentry = (punlinked)->nextlink; \
201 MAYBE_Z_LISTS((punlinked)->nextlink); \
203 (punlinked) = NULL; \
207 #define UNLINK_SLIST(punlinked, listhead, ptounlink, nextlink, \
209 UNLINK_EXPR_SLIST(punlinked, listhead, (ptounlink) == \
281 #define UNLINK_FIFO(punlinked, anchor, nextlink) \
285 (punlinked) = (anchor).phead; \
286 if (NULL != (punlinked)) { \
287 (anchor).phead = (punlinked)->nextlink; \
291 &(punlinked)->nextlink) \
293 MAYBE_Z_LISTS((punlinked)->nextlink); \
298 #define UNLINK_MID_FIFO(punlinked, anchor, tounlink, nextlink, \
316 (punlinked) = *ppentry; \
317 *ppentry = (punlinked)->nextlink; \
321 &(punlinked)->nextlink) \
323 MAYBE_Z_LISTS((punlinked)->nextlink); \
326 (punlinked) = NULL; \