Lines Matching defs:list
24 #define ISC_LIST_INIT(list) \ argument
37 #define ISC_LIST_HEAD(list) ((list).head) argument
38 #define ISC_LIST_TAIL(list) ((list).tail) argument
39 #define ISC_LIST_EMPTY(list) ((list).head == NULL) argument
41 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \ argument
52 #define ISC_LIST_PREPEND(list, elt, link) \ argument
57 #define ISC_LIST_INITANDPREPEND(list, elt, link) \ argument
60 #define __ISC_LIST_APPENDUNSAFE(list, elt, link) \ argument
71 #define ISC_LIST_APPEND(list, elt, link) \ argument
76 #define ISC_LIST_INITANDAPPEND(list, elt, link) \ argument
79 #define __ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type) \ argument
99 #define __ISC_LIST_UNLINKUNSAFE(list, elt, link) \ argument
102 #define ISC_LIST_UNLINK_TYPE(list, elt, link, type) \ argument
106 #define ISC_LIST_UNLINK(list, elt, link) \ argument
112 #define __ISC_LIST_INSERTBEFOREUNSAFE(list, before, elt, link) \ argument
124 #define ISC_LIST_INSERTBEFORE(list, before, elt, link) \ argument
129 #define __ISC_LIST_INSERTAFTERUNSAFE(list, after, elt, link) \ argument
141 #define ISC_LIST_INSERTAFTER(list, after, elt, link) \ argument
172 #define ISC_LIST_ENQUEUE(list, elt, link) ISC_LIST_APPEND(list, elt, link) argument
173 #define __ISC_LIST_ENQUEUEUNSAFE(list, elt, link) \ argument
175 #define ISC_LIST_DEQUEUE(list, elt, link) \ argument
177 #define ISC_LIST_DEQUEUE_TYPE(list, elt, link, type) \ argument
179 #define __ISC_LIST_DEQUEUEUNSAFE(list, elt, link) \ argument
181 #define __ISC_LIST_DEQUEUEUNSAFE_TYPE(list, elt, link, type) \ argument