/freebsd/contrib/wpa/src/ap/ |
H A D | taxonomy.c | 89 char htcap[7 + 4 + 1]; /* ",htcap:" + %04hx + trailing NUL */ in ie_to_string() local 107 os_memset(htcap, 0, sizeof(htcap)); in ie_to_string() 156 os_snprintf(htcap, sizeof(htcap), in ie_to_string() 230 htcap, htagg, htmcs, vhtcap, vhtrxmcs, vhttxmcs, in ie_to_string()
|
/freebsd/sys/net80211/ |
H A D | ieee80211_input.c | 625 scan->htcap = frm; in ieee80211_parse_beacon() 669 if (scan->htcap == NULL) in ieee80211_parse_beacon() 670 scan->htcap = frm; in ieee80211_parse_beacon() 673 scan->htcap = frm; in ieee80211_parse_beacon() 758 if (scan->htcap != NULL) { in ieee80211_parse_beacon() 759 IEEE80211_VERIFY_LENGTH(scan->htcap[1], in ieee80211_parse_beacon() 760 scan->htcap[0] == IEEE80211_ELEMID_VENDOR ? in ieee80211_parse_beacon() 763 scan->htcap = NULL); in ieee80211_parse_beacon()
|
H A D | ieee80211_sta.c | 1402 uint8_t *rates, *xrates, *wme, *htcap, *htinfo; in sta_recv_mgmt() local 1511 if (scan.htcap != NULL && scan.htinfo != NULL && in sta_recv_mgmt() 1515 scan.htcap, scan.htinfo); in sta_recv_mgmt() 1527 scan.htcap, scan.htinfo)) in sta_recv_mgmt() 1778 rates = xrates = wme = htcap = htinfo = NULL; in sta_recv_mgmt() 1790 htcap = frm; in sta_recv_mgmt() 1804 if (htcap == NULL) in sta_recv_mgmt() 1805 htcap = frm; in sta_recv_mgmt() 1859 if (htcap != NULL && htinfo != NULL && in sta_recv_mgmt() 1862 ieee80211_ht_updateparams(ni, htcap, htinfo); in sta_recv_mgmt() [all …]
|
H A D | ieee80211_hostap.c | 1796 uint8_t *ssid, *rates, *xrates, *wpa, *rsn, *wme, *ath, *htcap; in hostap_recv_mgmt() local 2097 ssid = rates = xrates = wpa = rsn = wme = ath = htcap = NULL; in hostap_recv_mgmt() 2116 htcap = frm; in hostap_recv_mgmt() 2134 if (ishtcapoui(frm) && htcap == NULL) in hostap_recv_mgmt() 2135 htcap = frm; in hostap_recv_mgmt() 2147 if (htcap != NULL) { in hostap_recv_mgmt() 2148 IEEE80211_VERIFY_LENGTH(htcap[1], in hostap_recv_mgmt() 2149 htcap[0] == IEEE80211_ELEMID_VENDOR ? in hostap_recv_mgmt() 2228 if (IEEE80211_IS_CHAN_HT(ni->ni_chan) && htcap != NULL) { in hostap_recv_mgmt() 2229 rate = ieee80211_setup_htrates(ni, htcap, in hostap_recv_mgmt() [all …]
|
H A D | ieee80211_scan_sta.c | 344 if (IEEE80211_IS_CHAN_HT(ise->se_chan) && sp->htcap == NULL) { in sta_add() 809 const struct ieee80211_ie_htcap *htcap = in maxrate() local 816 if (htcap != NULL) { in maxrate() 821 txparams = htcap->hc_mcsset[12]; in maxrate() 831 for (i = 31; i >= 0 && isclr(htcap->hc_mcsset, i); i--); in maxrate() 833 caps = le16dec(&htcap->hc_cap); in maxrate()
|
H A D | ieee80211_adhoc.c | 846 if (scan.htcap != NULL && scan.htinfo != NULL && in adhoc_recv_mgmt() 849 scan.htcap, scan.htinfo)); in adhoc_recv_mgmt() 851 scan.htcap, scan.htinfo)) in adhoc_recv_mgmt()
|
H A D | ieee80211_ht.h | 196 const uint8_t *htcap, int flags);
|
H A D | ieee80211_scan.h | 249 uint8_t *htcap; member
|
H A D | ieee80211_ht.c | 2105 const struct ieee80211_ie_htcap *htcap; in ieee80211_setup_htrates() local 2125 htcap = (const struct ieee80211_ie_htcap *) ie; in ieee80211_setup_htrates() 2127 if (isclr(htcap->hc_mcsset, i)) in ieee80211_setup_htrates()
|
/freebsd/sbin/ifconfig/ |
H A D | ifieee80211.c | 2873 const struct ieee80211_ie_htcap *htcap = in printhtcap() local 2879 LE_READ_2(&htcap->hc_cap), htcap->hc_param); in printhtcap() 2883 if (isset(htcap->hc_mcsset, i)) { in printhtcap() 2885 if (isclr(htcap->hc_mcsset, j)) in printhtcap() 2896 LE_READ_2(&htcap->hc_extcap), in printhtcap() 2897 LE_READ_4(&htcap->hc_txbf), in printhtcap() 2898 htcap->hc_antenna); in printhtcap()
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_80211.c | 374 struct ieee80211_ht_cap *htcap; in lkpi_sta_sync_ht_from_ni() local 398 htcap = (struct ieee80211_ht_cap *)ie; in lkpi_sta_sync_ht_from_ni() 399 sta->deflink.ht_cap.cap = htcap->cap_info; in lkpi_sta_sync_ht_from_ni() 400 sta->deflink.ht_cap.mcs = htcap->mcs; in lkpi_sta_sync_ht_from_ni() 415 if (htcap->mcs.rx_mask[i]) in lkpi_sta_sync_ht_from_ni()
|
/freebsd/sys/contrib/dev/athk/ath11k/ |
H A D | wmi.h | 3385 struct element_info htcap; member
|