Home
last modified time | relevance | path

Searched refs:keyix (Results 1 – 25 of 54) sorted by relevance

123

/dports/misc/rump/buildrump.sh-b914579/src/sys/net80211/
H A Dieee80211_crypto.c86 ieee80211_keyix *keyix, ieee80211_keyix *rxkeyix) in null_key_alloc() argument
102 *keyix = 0; /* NB: use key index 0 for ucast key */ in null_key_alloc()
104 *keyix = k - ic->ic_nw_keys; in null_key_alloc()
139 ieee80211_keyix *keyix, ieee80211_keyix *rxkeyix) in dev_key_alloc() argument
268 ieee80211_keyix keyix, rxkeyix; in ieee80211_crypto_newkey() local
382 if (!dev_key_alloc(ic, key, &keyix, &rxkeyix)) { in ieee80211_crypto_newkey()
409 key->wk_keyix = keyix; in ieee80211_crypto_newkey()
422 ieee80211_keyix keyix; in _ieee80211_crypto_delkey() local
432 keyix = key->wk_keyix; in _ieee80211_crypto_delkey()
433 if (keyix != IEEE80211_KEYIX_NONE) { in _ieee80211_crypto_delkey()
[all …]
H A Dieee80211_node.c1443 ni = nt->nt_keyixmap[keyix]; in ieee80211_find_rxnode_withkey_debug()
1460 if (keyix < nt->nt_keyixmax && in ieee80211_find_rxnode_withkey_debug()
1715 ieee80211_keyix keyix; in ieee80211_free_node_debug() local
1720 if (keyix < nt->nt_keyixmax && in ieee80211_free_node_debug()
1725 nt->nt_keyixmap[keyix] = NULL; in ieee80211_free_node_debug()
1746 ieee80211_keyix keyix; in ieee80211_node_delucastkey() local
1764 keyix = ni->ni_ucastkey.wk_rxkeyix; in ieee80211_node_delucastkey()
1767 nikey = nt->nt_keyixmap[keyix]; in ieee80211_node_delucastkey()
1768 nt->nt_keyixmap[keyix] = NULL; in ieee80211_node_delucastkey()
1794 ieee80211_keyix keyix; in node_reclaim() local
[all …]
H A Dieee80211_node.h229 const struct ieee80211_frame_min *, u_int16_t keyix,
247 #define ieee80211_find_rxnode_withkey(nt, wh, keyix) \ argument
248 ieee80211_find_rxnode_withkey_debug(nt, wh, keyix, __func__, __LINE__)
262 const struct ieee80211_frame_min *, u_int16_t keyix);
H A Dieee80211_netbsd.c679 const struct ieee80211_frame *wh, u_int keyix) in ieee80211_notify_michael_failure() argument
685 ether_sprintf(wh->i_addr2), keyix); in ieee80211_notify_michael_failure()
694 iev.iev_keyix = keyix; in ieee80211_notify_michael_failure()
H A Dieee80211_crypto.h230 const struct ieee80211_frame *, u_int keyix);
/dports/misc/rump/buildrump.sh-b914579/src/sys/dev/ic/
H A Dath.c1628 u_int i, keyix; in key_alloc_2pair() local
1638 keyix = i*NBBY; in key_alloc_2pair()
1641 keyix++; in key_alloc_2pair()
1662 __func__, keyix, keyix+64, in key_alloc_2pair()
1663 keyix+32, keyix+32+64); in key_alloc_2pair()
1666 return keyix; in key_alloc_2pair()
1683 u_int i, keyix; in key_alloc_pair() local
1693 keyix = i*NBBY; in key_alloc_pair()
1696 keyix++; in key_alloc_pair()
1712 __func__, keyix, keyix+64); in key_alloc_pair()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/ath/ath9k/
H A Dcommon.c127 u8 keyix; in ath9k_cmn_rx_skb_postprocess() local
150 keyix = rx_stats->rs_keyix; in ath9k_cmn_rx_skb_postprocess()
152 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && in ath9k_cmn_rx_skb_postprocess()
157 keyix = skb->data[hdrlen + 3] >> 6; in ath9k_cmn_rx_skb_postprocess()
159 if (test_bit(keyix, common->keymap)) in ath9k_cmn_rx_skb_postprocess()
H A Dar9002_mac.c261 ctl1 |= (i->keyix != ATH9K_TXKEYIX_INVALID ? SM(i->keyix, AR_DestIdx) : 0) in ar9002_set_txdesc()
287 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9002_set_txdesc()
H A Dmain.c824 static bool ath9k_txq_list_has_key(struct list_head *txq_list, u32 keyix) in ath9k_txq_list_has_key() argument
836 if (fi->keyix == keyix) in ath9k_txq_list_has_key()
843 static bool ath9k_txq_has_key(struct ath_softc *sc, u32 keyix) in ath9k_txq_has_key() argument
860 key_in_use = ath9k_txq_list_has_key(&txq->axq_q, keyix); in ath9k_txq_has_key()
867 &txq->txq_fifo[idx], keyix); in ath9k_txq_has_key()
877 static void ath9k_pending_key_del(struct ath_softc *sc, u8 keyix) in ath9k_pending_key_del() argument
882 if (!test_bit(keyix, ah->pending_del_keymap) || in ath9k_pending_key_del()
883 ath9k_txq_has_key(sc, keyix)) in ath9k_pending_key_del()
887 clear_bit(keyix, ah->pending_del_keymap); in ath9k_pending_key_del()
888 ath_key_delete(common, keyix); in ath9k_pending_key_del()
H A Dar9003_mac.c106 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9003_set_txdesc()
112 ctl12 = (i->keyix != ATH9K_TXKEYIX_INVALID ? in ar9003_set_txdesc()
113 SM(i->keyix, AR_DestIdx) : 0) in ar9003_set_txdesc()
H A Dhtc.h80 u8 keyix; member
91 u8 keyix; member
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/ath/ath9k/
H A Dcommon.c127 u8 keyix; in ath9k_cmn_rx_skb_postprocess() local
150 keyix = rx_stats->rs_keyix; in ath9k_cmn_rx_skb_postprocess()
152 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && in ath9k_cmn_rx_skb_postprocess()
157 keyix = skb->data[hdrlen + 3] >> 6; in ath9k_cmn_rx_skb_postprocess()
159 if (test_bit(keyix, common->keymap)) in ath9k_cmn_rx_skb_postprocess()
H A Dar9002_mac.c261 ctl1 |= (i->keyix != ATH9K_TXKEYIX_INVALID ? SM(i->keyix, AR_DestIdx) : 0) in ar9002_set_txdesc()
287 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9002_set_txdesc()
H A Dmain.c824 static bool ath9k_txq_list_has_key(struct list_head *txq_list, u32 keyix) in ath9k_txq_list_has_key() argument
836 if (fi->keyix == keyix) in ath9k_txq_list_has_key()
843 static bool ath9k_txq_has_key(struct ath_softc *sc, u32 keyix) in ath9k_txq_has_key() argument
860 key_in_use = ath9k_txq_list_has_key(&txq->axq_q, keyix); in ath9k_txq_has_key()
867 &txq->txq_fifo[idx], keyix); in ath9k_txq_has_key()
877 static void ath9k_pending_key_del(struct ath_softc *sc, u8 keyix) in ath9k_pending_key_del() argument
882 if (!test_bit(keyix, ah->pending_del_keymap) || in ath9k_pending_key_del()
883 ath9k_txq_has_key(sc, keyix)) in ath9k_pending_key_del()
887 clear_bit(keyix, ah->pending_del_keymap); in ath9k_pending_key_del()
888 ath_key_delete(common, keyix); in ath9k_pending_key_del()
H A Dar9003_mac.c106 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9003_set_txdesc()
112 ctl12 = (i->keyix != ATH9K_TXKEYIX_INVALID ? in ar9003_set_txdesc()
113 SM(i->keyix, AR_DestIdx) : 0) in ar9003_set_txdesc()
H A Dhtc.h80 u8 keyix; member
91 u8 keyix; member
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/ath/ath9k/
H A Dcommon.c127 u8 keyix; in ath9k_cmn_rx_skb_postprocess() local
150 keyix = rx_stats->rs_keyix; in ath9k_cmn_rx_skb_postprocess()
152 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && in ath9k_cmn_rx_skb_postprocess()
157 keyix = skb->data[hdrlen + 3] >> 6; in ath9k_cmn_rx_skb_postprocess()
159 if (test_bit(keyix, common->keymap)) in ath9k_cmn_rx_skb_postprocess()
H A Dar9002_mac.c261 ctl1 |= (i->keyix != ATH9K_TXKEYIX_INVALID ? SM(i->keyix, AR_DestIdx) : 0) in ar9002_set_txdesc()
287 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9002_set_txdesc()
H A Dmain.c824 static bool ath9k_txq_list_has_key(struct list_head *txq_list, u32 keyix) in ath9k_txq_list_has_key() argument
836 if (fi->keyix == keyix) in ath9k_txq_list_has_key()
843 static bool ath9k_txq_has_key(struct ath_softc *sc, u32 keyix) in ath9k_txq_has_key() argument
860 key_in_use = ath9k_txq_list_has_key(&txq->axq_q, keyix); in ath9k_txq_has_key()
867 &txq->txq_fifo[idx], keyix); in ath9k_txq_has_key()
877 static void ath9k_pending_key_del(struct ath_softc *sc, u8 keyix) in ath9k_pending_key_del() argument
882 if (!test_bit(keyix, ah->pending_del_keymap) || in ath9k_pending_key_del()
883 ath9k_txq_has_key(sc, keyix)) in ath9k_pending_key_del()
887 clear_bit(keyix, ah->pending_del_keymap); in ath9k_pending_key_del()
888 ath_key_delete(common, keyix); in ath9k_pending_key_del()
H A Dar9003_mac.c106 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9003_set_txdesc()
112 ctl12 = (i->keyix != ATH9K_TXKEYIX_INVALID ? in ar9003_set_txdesc()
113 SM(i->keyix, AR_DestIdx) : 0) in ar9003_set_txdesc()
H A Dhtc.h80 u8 keyix; member
91 u8 keyix; member
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/ath/
H A Dkey.c339 static int ath_setkey_tkip(struct ath_common *common, u16 keyix, const u8 *key, in ath_setkey_tkip() argument
362 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip()
368 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip()
375 if (!ath_hw_set_keycache_entry(common, keyix, hk, NULL)) { in ath_setkey_tkip()
383 return ath_hw_set_keycache_entry(common, keyix + 32, hk, addr); in ath_setkey_tkip()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/ath/
H A Dkey.c339 static int ath_setkey_tkip(struct ath_common *common, u16 keyix, const u8 *key, in ath_setkey_tkip() argument
362 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip()
368 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip()
375 if (!ath_hw_set_keycache_entry(common, keyix, hk, NULL)) { in ath_setkey_tkip()
383 return ath_hw_set_keycache_entry(common, keyix + 32, hk, addr); in ath_setkey_tkip()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/ath/
H A Dkey.c339 static int ath_setkey_tkip(struct ath_common *common, u16 keyix, const u8 *key, in ath_setkey_tkip() argument
362 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip()
368 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip()
375 if (!ath_hw_set_keycache_entry(common, keyix, hk, NULL)) { in ath_setkey_tkip()
383 return ath_hw_set_keycache_entry(common, keyix + 32, hk, addr); in ath_setkey_tkip()
/dports/net-mgmt/aircrack-ng/aircrack-ng-1.5.2/patches/old/
H A Dmadwifi-cvs-20050707.patch17 int iswep, ismcast, keyix, hdrlen, pktlen, try0;
114 , keyix /* key cache index */

123