Lines Matching defs:link

39 #define ISC_LINK_INIT_TYPE(elt, link, type)      \  argument
44 #define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void) argument
45 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1)) argument
51 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \ argument
63 #define ISC_LIST_PREPEND(list, elt, link) \ argument
69 #define ISC_LIST_INITANDPREPEND(list, elt, link) \ argument
72 #define __ISC_LIST_APPENDUNSAFE(list, elt, link) \ argument
84 #define ISC_LIST_APPEND(list, elt, link) \ argument
90 #define ISC_LIST_INITANDAPPEND(list, elt, link) \ argument
93 #define __ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type) \ argument
113 #define __ISC_LIST_UNLINKUNSAFE(list, elt, link) \ argument
116 #define ISC_LIST_UNLINK_TYPE(list, elt, link, type) \ argument
121 #define ISC_LIST_UNLINK(list, elt, link) \ argument
124 #define ISC_LIST_PREV(elt, link) ((elt)->link.prev) argument
125 #define ISC_LIST_NEXT(elt, link) ((elt)->link.next) argument
127 #define __ISC_LIST_INSERTBEFOREUNSAFE(list, before, elt, link) \ argument
139 #define ISC_LIST_INSERTBEFORE(list, before, elt, link) \ argument
146 #define __ISC_LIST_INSERTAFTERUNSAFE(list, after, elt, link) \ argument
158 #define ISC_LIST_INSERTAFTER(list, after, elt, link) \ argument
165 #define ISC_LIST_APPENDLIST(list1, list2, link) \ argument
178 #define ISC_LIST_PREPENDLIST(list1, list2, link) \ argument
191 #define ISC_LIST_ENQUEUE(list, elt, link) ISC_LIST_APPEND(list, elt, link) argument
192 #define __ISC_LIST_ENQUEUEUNSAFE(list, elt, link) \ argument
194 #define ISC_LIST_DEQUEUE(list, elt, link) \ argument
196 #define ISC_LIST_DEQUEUE_TYPE(list, elt, link, type) \ argument
198 #define __ISC_LIST_DEQUEUEUNSAFE(list, elt, link) \ argument
200 #define __ISC_LIST_DEQUEUEUNSAFE_TYPE(list, elt, link, type) \ argument