Lines Matching defs:mtag

558 	struct m_tag *mtag;
561 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_CALLBACK,
563 if (mtag == NULL)
566 cb = (struct ieee80211_cb *)(mtag+1);
569 m_tag_prepend(m, mtag);
578 struct m_tag *mtag;
581 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_XMIT_PARAMS,
583 if (mtag == NULL)
586 tx = (struct ieee80211_tx_params *)(mtag+1);
588 m_tag_prepend(m, mtag);
596 struct m_tag *mtag;
599 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_XMIT_PARAMS,
601 if (mtag == NULL)
603 tx = (struct ieee80211_tx_params *)(mtag + 1);
612 struct m_tag *mtag;
614 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_CALLBACK, NULL);
615 if (mtag != NULL) {
616 struct ieee80211_cb *cb = (struct ieee80211_cb *)(mtag+1);
629 struct m_tag *mtag;
632 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
634 if (mtag == NULL)
637 rx = (struct ieee80211_rx_params *)(mtag + 1);
639 m_tag_prepend(m, mtag);
646 struct m_tag *mtag;
649 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
651 if (mtag == NULL)
653 rx = (struct ieee80211_rx_params *)(mtag + 1);
661 struct m_tag *mtag;
664 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
666 if (mtag == NULL)
668 rx = (struct ieee80211_rx_params *)(mtag + 1);
678 struct m_tag *mtag;
681 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_TOA_PARAMS,
683 if (mtag == NULL)
686 rp = (struct ieee80211_toa_params *)(mtag + 1);
688 m_tag_prepend(m, mtag);
695 struct m_tag *mtag;
698 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_TOA_PARAMS,
700 if (mtag == NULL)
702 rp = (struct ieee80211_toa_params *)(mtag + 1);