Symbol: SLIST_NEXT
headers/compatibility/bsd/sys/queue.h
167
(var) = SLIST_NEXT((var), field))
headers/compatibility/bsd/sys/queue.h
171
(var) && ((tvar) = SLIST_NEXT((var), field), 1); \
headers/compatibility/bsd/sys/queue.h
177
(varp) = &SLIST_NEXT((var), field))
headers/compatibility/bsd/sys/queue.h
184
SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
headers/compatibility/bsd/sys/queue.h
185
SLIST_NEXT((slistelm), field) = (elm); \
headers/compatibility/bsd/sys/queue.h
189
SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
headers/compatibility/bsd/sys/queue.h
201
while (SLIST_NEXT(curelm, field) != (elm)) \
headers/compatibility/bsd/sys/queue.h
202
curelm = SLIST_NEXT(curelm, field); \
headers/compatibility/bsd/sys/queue.h
203
SLIST_NEXT(curelm, field) = \
headers/compatibility/bsd/sys/queue.h
204
SLIST_NEXT(SLIST_NEXT(curelm, field), field); \
headers/compatibility/bsd/sys/queue.h
210
SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
headers/private/firewire/queue.h
162
(var) = SLIST_NEXT((var), field))
headers/private/firewire/queue.h
166
(var) && ((tvar) = SLIST_NEXT((var), field), 1); \
headers/private/firewire/queue.h
172
(varp) = &SLIST_NEXT((var), field))
headers/private/firewire/queue.h
179
SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
headers/private/firewire/queue.h
180
SLIST_NEXT((slistelm), field) = (elm); \
headers/private/firewire/queue.h
184
SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
headers/private/firewire/queue.h
196
while (SLIST_NEXT(curelm, field) != (elm)) \
headers/private/firewire/queue.h
197
curelm = SLIST_NEXT(curelm, field); \
headers/private/firewire/queue.h
198
SLIST_NEXT(curelm, field) = \
headers/private/firewire/queue.h
199
SLIST_NEXT(SLIST_NEXT(curelm, field), field); \
headers/private/firewire/queue.h
205
SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
src/libs/compat/freebsd_network/compat/sys/queue.h
196
while (SLIST_NEXT(curelm, field) != NULL) \
src/libs/compat/freebsd_network/compat/sys/queue.h
197
curelm = SLIST_NEXT(curelm, field); \
src/libs/compat/freebsd_network/compat/sys/queue.h
198
SLIST_NEXT(curelm, field) = SLIST_FIRST(head2); \
src/libs/compat/freebsd_network/compat/sys/queue.h
210
(var) = SLIST_NEXT((var), field))
src/libs/compat/freebsd_network/compat/sys/queue.h
215
(var) = SLIST_NEXT((var), field))
src/libs/compat/freebsd_network/compat/sys/queue.h
219
(var) && ((tvar) = SLIST_NEXT((var), field), 1); \
src/libs/compat/freebsd_network/compat/sys/queue.h
224
(var) && ((tvar) = SLIST_NEXT((var), field), 1); \
src/libs/compat/freebsd_network/compat/sys/queue.h
230
(varp) = &SLIST_NEXT((var), field))
src/libs/compat/freebsd_network/compat/sys/queue.h
237
SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
src/libs/compat/freebsd_network/compat/sys/queue.h
238
SLIST_NEXT((slistelm), field) = (elm); \
src/libs/compat/freebsd_network/compat/sys/queue.h
242
SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
src/libs/compat/freebsd_network/compat/sys/queue.h
255
while (SLIST_NEXT(curelm, field) != (elm)) \
src/libs/compat/freebsd_network/compat/sys/queue.h
256
curelm = SLIST_NEXT(curelm, field); \
src/libs/compat/freebsd_network/compat/sys/queue.h
263
SLIST_NEXT(elm, field) = \
src/libs/compat/freebsd_network/compat/sys/queue.h
264
SLIST_NEXT(SLIST_NEXT(elm, field), field); \
src/libs/compat/freebsd_network/compat/sys/queue.h
268
SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
src/libs/compat/freebsd_network/fbsd_uipc_mbuf2.c
357
while ((q = SLIST_NEXT(p, m_tag_link)) != NULL)
src/libs/compat/freebsd_network/fbsd_uipc_mbuf2.c
389
p = SLIST_NEXT(t, m_tag_link);
src/libs/compat/freebsd_network/fbsd_uipc_mbuf2.c
393
p = SLIST_NEXT(p, m_tag_link);