Home
last modified time | relevance | path

Searched refs:ifq_head (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/dev/usb/
H A Dusb_mbuf.h50 (ifq)->ifq_head = (m); \
58 (m) = (ifq)->ifq_head; \
60 if (((ifq)->ifq_head = (m)->usb_nextpkt) == NULL) { \
69 (m)->usb_nextpkt = (ifq)->ifq_head; \
73 (ifq)->ifq_head = (m); \
79 #define USB_IF_POLL(ifq, m) ((m) = (ifq)->ifq_head)
H A Dusb_dev.h71 struct usb_mbuf *ifq_head; member
/freebsd/sys/net/
H A Difq.h55 struct mbuf *ifq_head; member
78 (ifq)->ifq_head = m; \
92 (m)->m_nextpkt = (ifq)->ifq_head; \
95 (ifq)->ifq_head = (m); \
106 (m) = (ifq)->ifq_head; \
108 if (((ifq)->ifq_head = (m)->m_nextpkt) == NULL) \
122 (m) = (ifq)->ifq_head; \
123 (ifq)->ifq_head = (ifq)->ifq_tail = NULL; \
133 #define _IF_POLL(ifq, m) ((m) = (ifq)->ifq_head)
H A Dif.c2227 n = ifq->ifq_head; in if_qflush()
2232 ifq->ifq_head = 0; in if_qflush()
5200 IF_DB_PRINTF("%p", if_snd.ifq_head); in if_show_ifnet()
/freebsd/sys/net/altq/
H A Dif_altq.h42 struct mbuf *ifq_head; member
/freebsd/sys/net80211/
H A Dieee80211_freebsd.h158 (mtail)->m_nextpkt = (ifq)->ifq_head; \
161 (ifq)->ifq_head = (mhead); \
H A Dieee80211_freebsd.c443 mprev = &ifq->ifq_head; in ieee80211_flush_ifq()
456 m = ifq->ifq_head; in ieee80211_flush_ifq()
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_fil.h1245 ipftqent_t *ifq_head; member
1259 (x)->ifq_head = NULL; \
1261 (x)->ifq_tail = &(x)->ifq_head; \
H A Dfil.c5757 if (ifq->ifq_head != tqe) { in ipf_queuefront()
5764 tqe->tqe_next = ifq->ifq_head; in ipf_queuefront()
5765 ifq->ifq_head->tqe_pnext = &tqe->tqe_next; in ipf_queuefront()
5766 ifq->ifq_head = tqe; in ipf_queuefront()
5767 tqe->tqe_pnext = &ifq->ifq_head; in ipf_queuefront()
8721 for (tqn = ipfqs[IPF_TCPS_CLOSED].ifq_head; ((tqe = tqn) != NULL); ) {
8727 for (tqn = ipfqs[IPF_TCPS_TIME_WAIT].ifq_head;
8771 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) {
8783 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) {
8906 for (tqe = head->ifq_head; tqe != NULL; tqe = tqe->tqe_next) {
H A Dip_state.c3665 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) { in ipf_state_expire()
3676 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) { in ipf_state_expire()
3766 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) { in ipf_state_flush()
3781 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) { in ipf_state_flush()
3812 tqn = softs->ipf_state_tcptq[which].ifq_head; in ipf_state_flush()
H A Dip_nat.c5781 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); i++) { in ipf_nat_expire()
5790 for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); i++) { in ipf_nat_expire()
6644 for (tqn = ifq->ifq_head; tqn != NULL; ) { in ipf_nat_extraflush()
6660 for (tqn = ifq->ifq_head; tqn != NULL; ) { in ipf_nat_extraflush()
6690 tqn = softn->ipf_nat_tcptq[which].ifq_head; in ipf_nat_extraflush()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_netbsd.cpp337 void *ifq_head; member