Home
last modified time | relevance | path

Searched refs:is_mgmt (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/net80211/
H A Dieee80211_crypto_tkip.c183 int is_mgmt; in tkip_encap() local
186 is_mgmt = IEEE80211_IS_MGMT(wh); in tkip_encap()
205 if (is_mgmt && (k->wk_flags & IEEE80211_KEY_NOIVMGT)) in tkip_encap()
207 if ((! is_mgmt) && (k->wk_flags & IEEE80211_KEY_NOIV)) in tkip_encap()
242 int is_mgmt; in tkip_enmic() local
245 is_mgmt = IEEE80211_IS_MGMT(wh); in tkip_enmic()
250 if (is_mgmt && (k->wk_flags & IEEE80211_KEY_NOMICMGT)) in tkip_enmic()
252 if ((! is_mgmt) && (k->wk_flags & IEEE80211_KEY_NOMIC)) in tkip_enmic()
H A Dieee80211_crypto_wep.c186 int is_mgmt; in wep_encap() local
190 is_mgmt = IEEE80211_IS_MGMT(wh); in wep_encap()
195 if (is_mgmt && (k->wk_flags & IEEE80211_KEY_NOIVMGT)) in wep_encap()
197 if ((! is_mgmt) && (k->wk_flags & IEEE80211_KEY_NOIV)) in wep_encap()
H A Dieee80211_crypto_gcmp.c226 int is_mgmt; in gcmp_encap() local
230 is_mgmt = IEEE80211_IS_MGMT(wh); in gcmp_encap()
238 if (is_mgmt && (k->wk_flags & IEEE80211_KEY_NOIVMGT)) in gcmp_encap()
240 if (!is_mgmt && (k->wk_flags & IEEE80211_KEY_NOIV)) in gcmp_encap()
H A Dieee80211_crypto_ccmp.c170 int is_mgmt; in ccmp_encap() local
174 is_mgmt = IEEE80211_IS_MGMT(wh); in ccmp_encap()
182 if (is_mgmt && (k->wk_flags & IEEE80211_KEY_NOIVMGT)) in ccmp_encap()
184 if ((! is_mgmt) && (k->wk_flags & IEEE80211_KEY_NOIV)) in ccmp_encap()
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dhtt_rx.c2072 bool is_mgmt; in ath10k_htt_rx_h_mpdu() local
2090 is_mgmt = !!(rxd_attention->flags & in ath10k_htt_rx_h_mpdu()
2171 if (is_mgmt) in ath10k_htt_rx_h_mpdu()
2177 if (likely(!is_mgmt)) in ath10k_htt_rx_h_mpdu()
2226 if (is_mgmt) in ath10k_htt_rx_h_mpdu()
H A Dhtt_tx.c169 int ath10k_htt_tx_mgmt_inc_pending(struct ath10k_htt *htt, bool is_mgmt, in ath10k_htt_tx_mgmt_inc_pending() argument
176 if (!is_mgmt || !ar->hw_params.max_probe_resp_desc_thres) in ath10k_htt_tx_mgmt_inc_pending()
H A Dmac.c4398 bool is_mgmt, is_presp; in ath10k_mac_tx_push_txq() local
4424 is_mgmt = (txpath == ATH10K_MAC_TX_HTT_MGMT); in ath10k_mac_tx_push_txq()
4426 if (is_mgmt) { in ath10k_mac_tx_push_txq()
4431 ret = ath10k_htt_tx_mgmt_inc_pending(htt, is_mgmt, is_presp); in ath10k_mac_tx_push_txq()
4447 if (is_mgmt) in ath10k_mac_tx_push_txq()
4682 bool is_mgmt; in ath10k_mac_op_tx() local
4693 is_mgmt = (txpath == ATH10K_MAC_TX_HTT_MGMT); in ath10k_mac_op_tx()
4714 ret = ath10k_htt_tx_mgmt_inc_pending(htt, is_mgmt, is_presp); in ath10k_mac_op_tx()
4732 if (is_mgmt) in ath10k_mac_op_tx()
H A Dhtt.h2468 int ath10k_htt_tx_mgmt_inc_pending(struct ath10k_htt *htt, bool is_mgmt,