Lines Matching refs:next
15 nxt_queue_link_t *next; member
27 (queue)->head.next = &(queue)->head; \
34 (link)->next = (link); \
73 (queue)->head.next
89 (link)->next
98 (link)->next = (queue)->head.next; \
99 (link)->next->prev = (link); \
101 (queue)->head.next = (link); \
108 (link)->prev->next = (link); \
109 (link)->next = &(queue)->head; \
116 (link)->next = (target)->next; \
117 (link)->next->prev = (link); \
119 (target)->next = (link); \
125 (link)->next = (target); \
128 (link)->prev->next = (link); \
136 (link)->next->prev = (link)->prev; \
137 (link)->prev->next = (link)->next; \
139 (link)->next = NULL; \
146 (link)->next->prev = (link)->prev; \
147 (link)->prev->next = (link)->next; \
161 (tail)->head.prev->next = &(tail)->head; \
162 (tail)->head.next = (link); \
164 (queue)->head.prev->next = &(queue)->head; \
174 (queue)->head.prev->next = &(queue)->head; \
186 (queue)->head.prev->next = (tail)->head.next; \
187 (tail)->head.next->prev = (queue)->head.prev; \
189 (queue)->head.prev->next = &(queue)->head; \