Searched refs:supported_rates (Results 1 - 25 of 42) sorted by relevance

12

/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_list.h22 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:ap_info
H A Dap_list.c44 int rate = (ap->supported_rates[i] & 0x7f) * 5;
192 merge_byte_arrays(ap->supported_rates, WLAN_SUPP_RATES_MAX,
H A Dsta_info.h77 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:sta_info
H A Dhw_features.c199 if (iface->conf->supported_rates &&
200 !hostapd_rate_found(iface->conf->supported_rates,
H A Dap_config.h697 int *supported_rates; member in struct:hostapd_config
/external/wpa_supplicant_8/src/ap/
H A Dap_list.h22 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:ap_info
H A Dap_list.c44 int rate = (ap->supported_rates[i] & 0x7f) * 5;
192 merge_byte_arrays(ap->supported_rates, WLAN_SUPP_RATES_MAX,
H A Dsta_info.h77 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:sta_info
H A Dhw_features.c199 if (iface->conf->supported_rates &&
200 !hostapd_rate_found(iface->conf->supported_rates,
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dap_list.h22 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:ap_info
H A Dap_list.c44 int rate = (ap->supported_rates[i] & 0x7f) * 5;
192 merge_byte_arrays(ap->supported_rates, WLAN_SUPP_RATES_MAX,
H A Dsta_info.h77 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member in struct:sta_info
H A Dhw_features.c199 if (iface->conf->supported_rates &&
200 !hostapd_rate_found(iface->conf->supported_rates,
/external/adhd/cras/src/server/
H A Dcras_hfp_iodev.c32 free(iodev->supported_rates);
33 iodev->supported_rates = (size_t *)malloc(2 * sizeof(size_t));
34 iodev->supported_rates[0] = 8000;
35 iodev->supported_rates[1] = 0;
207 free(hfpio->base.supported_rates);
H A Dcras_bt_io.c153 for (length = 0; dev->supported_rates[length]; length++);
154 free(iodev->supported_rates);
155 iodev->supported_rates = (size_t *)malloc(
156 (length + 1) * sizeof(*iodev->supported_rates));
158 iodev->supported_rates[i] = dev->supported_rates[i];
H A Dcras_a2dp_iodev.c82 free(iodev->supported_rates);
83 iodev->supported_rates = (size_t *)malloc(2 * sizeof(rate));
84 iodev->supported_rates[0] = rate;
85 iodev->supported_rates[1] = 0;
439 free(a2dpio->base.supported_rates);
H A Dcras_iodev.c265 if (iodev->supported_rates[0] == 0) /* No rates supported */
268 for (i = 0, best = 0; iodev->supported_rates[i] != 0; i++) {
269 if (rrate == iodev->supported_rates[i] &&
272 if (best == 0 && (rrate % iodev->supported_rates[i] == 0 ||
273 iodev->supported_rates[i] % rrate == 0))
274 best = iodev->supported_rates[i];
279 return iodev->supported_rates[0];
H A Dcras_alsa_io.c829 free(aio->base.supported_rates);
1565 free(iodev->supported_rates);
1566 iodev->supported_rates = NULL;
1573 &iodev->supported_rates,
1583 free(iodev->supported_rates);
1584 iodev->supported_rates = (size_t*)malloc(
1585 2 * sizeof(iodev->supported_rates[0]));
1586 iodev->supported_rates[0] = fixed_rate;
1587 iodev->supported_rates[1] = 0;
H A Dcras_empty_iodev.c194 iodev->supported_rates = empty_supported_rates;
H A Dcras_iodev.h146 * supported_rates - Array of sample rates supported by device 0-terminated.
212 size_t *supported_rates; member in struct:cras_iodev
H A Dtest_iodev.c191 iodev->supported_rates = test_supported_rates;
H A Dcras_loopback_iodev.c260 iodev->supported_rates = loopback_supported_rates;
/external/adhd/cras/src/tests/
H A Dbt_io_unittest.cc86 iodev->supported_rates = (size_t *)calloc(
87 2, sizeof(*iodev->supported_rates));
88 iodev->supported_rates[0] = 48000;
89 iodev->supported_rates[1] = 0;
H A Diodev_list_unittest.cc132 d1_.supported_rates = sample_rates_;
145 d2_.supported_rates = sample_rates_;
158 d3_.supported_rates = sample_rates_;
172 loopback_input.supported_rates = sample_rates_;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dmesh_mpm.c131 sizeof(sta->supported_rates)) {
140 sta->supported_rates, sizeof(sta->supported_rates),
712 params.supp_rates = sta->supported_rates;

Completed in 335 milliseconds

12