/hardware/ti/wlan/mac80211/config/ |
hostapd.conf | 14 supported_rates=10 20 55 110 60 90 120 180 240 360 480 540
|
/external/wpa_supplicant_8/src/ap/ |
ap_list.h | 29 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:ap_info
|
ap_list.c | 44 int rate = (ap->supported_rates[i] & 0x7f) * 5; 254 os_memset(ap->supported_rates, 0, WLAN_SUPP_RATES_MAX); 260 os_memcpy(ap->supported_rates, elems->supp_rates, len); 268 os_memcpy(ap->supported_rates + len, elems->ext_supp_rates,
|
sta_info.h | 47 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:sta_info
|
ieee802_11.c | 579 if (elems->supp_rates_len > sizeof(sta->supported_rates)) { 587 os_memset(sta->supported_rates, 0, sizeof(sta->supported_rates)); 588 os_memcpy(sta->supported_rates, elems->supp_rates, 594 sizeof(sta->supported_rates)) { 604 os_memcpy(sta->supported_rates + elems->supp_rates_len, 1026 if ((sta->supported_rates[i] & 0x7f) > 22) { [all...] |
ap_config.h | 393 int *supported_rates; member in struct:hostapd_config
|
hw_features.c | 151 if (iface->conf->supported_rates && 152 !hostapd_rate_found(iface->conf->supported_rates,
|
ap_config.c | 492 os_free(conf->supported_rates);
|
ieee802_1x.c | 372 if ((sta->supported_rates[i] & 0x7f) > rate) 373 rate = sta->supported_rates[i] & 0x7f; [all...] |
/external/wpa_supplicant_8/hostapd/ |
dump_state.c | 130 fprintf(f, " supported_rates="); 132 fprintf(f, "%02x ", sta->supported_rates[i]);
|
config_file.c | [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
ap.c | 133 conf->supported_rates = list;
|