Home
last modified time | relevance | path

Searched refs:SLIST_FIRST (Results 1 – 15 of 15) sorted by relevance

/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dqueue.h191 QUEUE_TYPEOF(type) *curelm = SLIST_FIRST(head1); \
193 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \
195 } else if (SLIST_FIRST(head2) != NULL) { \
198 SLIST_NEXT(curelm, field) = SLIST_FIRST(head2); \
205 #define SLIST_FIRST(head) ((head)->slh_first) macro
208 for ((var) = SLIST_FIRST((head)); \
213 for ((var) = ((var) ? (var) : SLIST_FIRST((head))); \
218 for ((var) = SLIST_FIRST((head)); \
223 for ((var) = ((var) ? (var) : SLIST_FIRST((head))); \
228 for ((varp) = &SLIST_FIRST((head)); \
[all …]
/haiku/headers/compatibility/bsd/sys/
H A Dqueue.h162 #define SLIST_FIRST(head) ((head)->slh_first) macro
165 for ((var) = SLIST_FIRST((head)); \
170 for ((var) = SLIST_FIRST((head)); \
175 for ((varp) = &SLIST_FIRST((head)); \
180 SLIST_FIRST((head)) = NULL; \
189 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
190 SLIST_FIRST((head)) = (elm); \
196 if (SLIST_FIRST((head)) == (elm)) { \
200 struct type *curelm = SLIST_FIRST((head)); \
210 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
/haiku/headers/private/firewire/
H A Dqueue.h157 #define SLIST_FIRST(head) ((head)->slh_first) macro
160 for ((var) = SLIST_FIRST((head)); \
165 for ((var) = SLIST_FIRST((head)); \
170 for ((varp) = &SLIST_FIRST((head)); \
175 SLIST_FIRST((head)) = NULL; \
184 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
185 SLIST_FIRST((head)) = (elm); \
191 if (SLIST_FIRST((head)) == (elm)) { \
195 struct type *curelm = SLIST_FIRST((head)); \
205 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_state.c97 st = SLIST_FIRST(&res_list); in __res_get_state()
/haiku/src/add-ons/kernel/file_systems/fat/bsd/kern/
H A Dvfs_bio.c308 newBuf = SLIST_FIRST(&deviceNode->v_bufobj.bo_emptybufs); in getblkx()
315 newBuf = SLIST_FIRST(&deviceNode->v_bufobj.bo_clusterbufs); in getblkx()
323 newBuf = SLIST_FIRST(&deviceNode->v_bufobj.bo_fatbufs); in getblkx()
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_uipc_mbuf2.c354 p = SLIST_FIRST(&m->m_pkthdr.tags); in m_tag_delete_chain()
387 p = SLIST_FIRST(&m->m_pkthdr.tags); in m_tag_locate()
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dqueue.h198 #define SLIST_FIRST(head) ((head)->slh_first) macro
/haiku/src/add-ons/kernel/drivers/audio/ac97/auvia/
H A Dqueue.h198 #define SLIST_FIRST(head) ((head)->slh_first) macro
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Dqueue.h198 #define SLIST_FIRST(head) ((head)->slh_first) macro
/haiku/src/add-ons/kernel/drivers/audio/ac97/es1370/
H A Dqueue.h198 #define SLIST_FIRST(head) ((head)->slh_first) macro
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Dqueue.h198 #define SLIST_FIRST(head) ((head)->slh_first) macro
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipw.c1582 shdr = SLIST_FIRST(&sc->free_shdr); in ipw_tx_start()
1583 sbuf = SLIST_FIRST(&sc->free_sbuf); in ipw_tx_start()
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dkernel_interface.cpp3416 listEntry = SLIST_FIRST(&devNode->v_bufobj.bo_clusterbufs); in dev_bsd_node_uninit()
3428 listEntry = SLIST_FIRST(&devNode->v_bufobj.bo_fatbufs); in dev_bsd_node_uninit()
3435 listEntry = SLIST_FIRST(&devNode->v_bufobj.bo_emptybufs); in dev_bsd_node_uninit()
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/ral/
H A Drt2860.c680 data = SLIST_FIRST(&sc->data_pool); in rt2860_free_tx_pool()
1474 data = SLIST_FIRST(&sc->data_pool); in rt2860_tx()
1746 data = SLIST_FIRST(&sc->data_pool); in rt2860_tx_raw()
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8363/dev/mwl/
H A Dif_mwl.c2458 buf = SLIST_FIRST(&sc->sc_rxfree); in mwl_getrxdma()