/haiku/headers/compatibility/bsd/sys/ |
H A D | queue.h | 436 TAILQ_FIRST((head))->field.tqe_prev != \ 437 &TAILQ_FIRST((head))) \ 477 #define TAILQ_FIRST(head) ((head)->tqh_first) macro 480 for ((var) = TAILQ_FIRST((head)); \ 485 for ((var) = TAILQ_FIRST((head)); \ 500 TAILQ_FIRST((head)) = NULL; \ 501 (head)->tqh_last = &TAILQ_FIRST((head)); \ 532 if ((TAILQ_NEXT((elm), field) = TAILQ_FIRST((head))) != NULL) \ 533 TAILQ_FIRST((head))->field.tqe_prev = \ 537 TAILQ_FIRST((head)) = (elm); \ [all …]
|
/haiku/headers/private/firewire/ |
H A D | queue.h | 431 TAILQ_FIRST((head))->field.tqe_prev != \ 432 &TAILQ_FIRST((head))) \ 472 #define TAILQ_FIRST(head) ((head)->tqh_first) macro 475 for ((var) = TAILQ_FIRST((head)); \ 480 for ((var) = TAILQ_FIRST((head)); \ 495 TAILQ_FIRST((head)) = NULL; \ 496 (head)->tqh_last = &TAILQ_FIRST((head)); \ 527 if ((TAILQ_NEXT((elm), field) = TAILQ_FIRST((head))) != NULL) \ 528 TAILQ_FIRST((head))->field.tqe_prev = \ 532 TAILQ_FIRST((head)) = (elm); \ [all …]
|
/haiku/src/libs/compat/freebsd_network/compat/sys/ |
H A D | queue.h | 607 TAILQ_FIRST((head))->field.tqe_prev != \ 608 &TAILQ_FIRST((head))) \ 648 #define TAILQ_FIRST(head) ((head)->tqh_first) macro 651 for ((var) = TAILQ_FIRST((head)); \ 656 for ((var) = ((var) ? (var) : TAILQ_FIRST((head))); \ 661 for ((var) = TAILQ_FIRST((head)); \ 666 for ((var) = ((var) ? (var) : TAILQ_FIRST((head))); \ 691 TAILQ_FIRST((head)) = NULL; \ 692 (head)->tqh_last = &TAILQ_FIRST((head)); \ 723 if ((TAILQ_NEXT((elm), field) = TAILQ_FIRST((head))) != NULL) \ [all …]
|
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ |
H A D | if_ath_rx_edma.c | 534 bf = TAILQ_FIRST(&sc->sc_rx_rxlist[HAL_RX_QUEUE_LP]); in ath_edma_flush_deferred_queue() 540 bf = TAILQ_FIRST(&sc->sc_rx_rxlist[HAL_RX_QUEUE_HP]); in ath_edma_flush_deferred_queue() 605 bf = TAILQ_FIRST(&rxlist); in ath_edma_recv_proc_deferred_queue() 762 bf = TAILQ_FIRST(&sc->sc_rxbuf); in ath_edma_rxbuf_alloc()
|
H A D | if_ath_beacon.c | 581 bf = TAILQ_FIRST(&cabq->axq_q); in ath_beacon_cabq_start_edma() 668 bf = TAILQ_FIRST(&cabq->axq_q); in ath_beacon_cabq_start_legacy() 794 bfm = TAILQ_FIRST(&avp->av_mcastq.axq_q); in ath_beacon_generate()
|
H A D | if_ath_rx.c | 1119 bf = TAILQ_FIRST(&sc->sc_rxbuf); in ath_rx_proc() 1261 bf = TAILQ_FIRST(&sc->sc_rxbuf); in ath_rx_proc() 1477 bf = TAILQ_FIRST(&sc->sc_rxbuf); in ath_legacy_startrecv()
|
H A D | if_ath_tx.c | 843 bf_first = TAILQ_FIRST(&txq->axq_q); in ath_tx_handoff_hw() 916 bf = TAILQ_FIRST(&txq->axq_q); in ath_legacy_tx_dma_restart() 4132 while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) { in ath_tx_node_flush() 4156 tid = TAILQ_FIRST(&txq->axq_tidq); in ath_tx_txq_drain() 4163 while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) { in ath_tx_txq_drain() 4744 while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) { in ath_tx_comp_aggr_error() 5149 while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) { 5548 bf = TAILQ_FIRST(&bf_q); 6105 while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) { 6158 while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) {
|
H A D | if_ath.c | 1699 avp->av_bcbuf = TAILQ_FIRST(&sc->sc_bbuf); in ath_vap_create() 2214 TAILQ_FIRST(&ic->ic_vaps); in ath_intr() 3166 bf = TAILQ_FIRST(&sc->sc_txbuf_mgmt); in _ath_getbuf_locked() 3168 bf = TAILQ_FIRST(&sc->sc_txbuf); in _ath_getbuf_locked() 3204 TAILQ_FIRST(&sc->sc_txbuf) == NULL ? in _ath_getbuf_locked() 3569 bf = TAILQ_FIRST(&frags); in ath_transmit() 4468 bf = TAILQ_FIRST(&txq->axq_q); in ath_tx_processq() 4970 bf = TAILQ_FIRST(&txq->fifo.axq_q); in ath_tx_draintxq_get_one() 5005 bf = TAILQ_FIRST(&txq->axq_q); in ath_tx_draintxq_get_one() 5231 struct ath_buf *bf = TAILQ_FIRST(&sc->sc_bbuf); in ath_legacy_tx_drain()
|
H A D | if_ath_tdma.c | 259 vap = TAILQ_FIRST(&ic->ic_vaps); /* XXX */ in ath_tdma_config()
|
H A D | if_athvar.h | 434 #define ATH_TXQ_FIRST(_tq) TAILQ_FIRST(&(_tq)->axq_q) 455 #define ATH_TID_FIRST(_tq) TAILQ_FIRST(&(_tq)->tid_q) 476 #define ATH_TID_FILT_FIRST(_tq) TAILQ_FIRST(&(_tq)->filtq.tid_q)
|
H A D | if_ath_tx_edma.c | 226 bf = TAILQ_FIRST(&sq); in ath_tx_edma_push_staging_list()
|
/haiku/src/libs/compat/freebsd_wlan/net80211/ |
H A D | ieee80211_acl.c | 239 while ((acl = TAILQ_FIRST(&as->as_list)) != NULL) in acl_free_all()
|
H A D | ieee80211_scan_sta.c | 1286 if (TAILQ_FIRST(&st->st_entry) == NULL) { in sta_pick_bss() 1649 if (TAILQ_FIRST(&st->st_entry) == NULL) { 1927 if (TAILQ_FIRST(&st->st_entry) == NULL) {
|
/haiku/src/libs/compat/freebsd_iflib/ |
H A D | subr_gtaskqueue.c | 320 while (TAILQ_FIRST(&queue->tq_active) != &tb_marker) in gtaskqueue_drain_tq_active() 328 tb_first = TAILQ_FIRST(&queue->tq_active); in gtaskqueue_drain_tq_active() 391 tb_first = TAILQ_FIRST(&queue->tq_active); in gtaskqueue_run_locked()
|
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/ |
H A D | nvme_internal.h | 61 for ((var) = TAILQ_FIRST((head)); \
|
H A D | nvme_ctrlr.c | 1147 qpair = TAILQ_FIRST(&ctrlr->active_io_qpairs); in nvme_ctrlr_detach() 1445 qpair = TAILQ_FIRST(&ctrlr->free_io_qpairs); in nvme_ioqp_get()
|
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/ |
H A D | if_ipw.c | 1000 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in ipw_rx_newstate_intr() 1362 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in ipw_fatal_error_intr() 1768 ieee80211_scan_done(TAILQ_FIRST(&ic->ic_vaps)); in ipw_watchdog() 2011 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in ipw_setwepkeys() 2308 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in ipw_init_locked()
|
/haiku/src/libs/compat/freebsd_network/ |
H A D | fbsd_subr_taskqueue.c | 373 tb_first = TAILQ_FIRST(&queue->tq_active); in taskqueue_run_locked()
|
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/ |
H A D | if_wpi.c | 2177 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_notif_intr() 3209 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_parent() 3559 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_set_promisc() 3934 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_config() 4036 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_limit_dwell() 5421 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_radio_on() 5438 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_radio_off() 5570 struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps); in wpi_scan_end()
|
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/ |
H A D | queue.h | 414 #define TAILQ_FIRST(head) ((head)->tqh_first) macro
|
/haiku/src/add-ons/kernel/drivers/audio/ac97/auvia/ |
H A D | queue.h | 414 #define TAILQ_FIRST(head) ((head)->tqh_first) macro
|
/haiku/src/add-ons/kernel/drivers/audio/emuxki/ |
H A D | queue.h | 414 #define TAILQ_FIRST(head) ((head)->tqh_first) macro
|
/haiku/src/add-ons/kernel/drivers/audio/ac97/es1370/ |
H A D | queue.h | 414 #define TAILQ_FIRST(head) ((head)->tqh_first) macro
|
/haiku/src/add-ons/kernel/drivers/audio/echo/ |
H A D | queue.h | 414 #define TAILQ_FIRST(head) ((head)->tqh_first) macro
|
/haiku/src/libs/compat/openbsd_wlan/net80211/ |
H A D | ieee80211_crypto.c | 84 while ((pmk = TAILQ_FIRST(&ic->ic_pmksa)) != NULL) { in ieee80211_crypto_detach()
|