/external/autotest/server/site_tests/network_WiFi_APSupportedRates/ |
D | network_WiFi_APSupportedRates.py | 17 def check_bitrates_in_capture(self, pcap_result, supported_rates): argument 60 f.bit_rate not in supported_rates] 68 (bad_rates, supported_rates)) 110 ap_config.supported_rates)
|
D | control.11g | 22 supported_rates=[24, 36, 48, 54],
|
D | control.11ac | 24 supported_rates=[36, 48, 54],
|
/external/adhd/cras/src/server/ |
D | cras_hfp_alsa_iodev.c | 55 free(iodev->supported_rates); in hfp_alsa_update_supported_formats() 56 iodev->supported_rates = malloc(2 * sizeof(*iodev->supported_rates)); in hfp_alsa_update_supported_formats() 57 if (!iodev->supported_rates) in hfp_alsa_update_supported_formats() 59 iodev->supported_rates[0] = 8000; in hfp_alsa_update_supported_formats() 60 iodev->supported_rates[1] = 0; in hfp_alsa_update_supported_formats() 331 free(iodev->supported_rates); in hfp_alsa_iodev_destroy()
|
D | cras_hfp_iodev.c | 46 free(iodev->supported_rates); in update_supported_formats() 47 iodev->supported_rates = (size_t *)malloc(2 * sizeof(size_t)); in update_supported_formats() 50 iodev->supported_rates[0] = in update_supported_formats() 54 iodev->supported_rates[1] = 0; in update_supported_formats() 278 free(hfpio->base.supported_rates); in hfp_free_resources()
|
D | cras_bt_io.c | 180 for (length = 0; dev->supported_rates[length]; length++) in update_supported_formats() 182 free(iodev->supported_rates); in update_supported_formats() 183 iodev->supported_rates = (size_t *)malloc( in update_supported_formats() 184 (length + 1) * sizeof(*iodev->supported_rates)); in update_supported_formats() 186 iodev->supported_rates[i] = dev->supported_rates[i]; in update_supported_formats() 582 free(bt_iodev->supported_rates); in cras_bt_io_free_resources()
|
D | cras_a2dp_iodev.c | 90 free(iodev->supported_rates); in update_supported_formats() 91 iodev->supported_rates = (size_t *)malloc(2 * sizeof(rate)); in update_supported_formats() 92 iodev->supported_rates[0] = rate; in update_supported_formats() 93 iodev->supported_rates[1] = 0; in update_supported_formats() 604 free(a2dpio->base.supported_rates); in free_resources()
|
D | cras_iodev.c | 308 if (iodev->supported_rates[0] == 0) /* No rates supported */ in get_best_rate() 311 for (i = 0, best = 0; iodev->supported_rates[i] != 0; i++) { in get_best_rate() 312 if (rrate == iodev->supported_rates[i] && rrate >= 44100) in get_best_rate() 314 if (best == 0 && (rrate % iodev->supported_rates[i] == 0 || in get_best_rate() 315 iodev->supported_rates[i] % rrate == 0)) in get_best_rate() 316 best = iodev->supported_rates[i]; in get_best_rate() 321 return iodev->supported_rates[0]; in get_best_rate()
|
D | cras_alsa_io.c | 873 free(aio->base.supported_rates); in free_alsa_iodev_resources() 1711 free(iodev->supported_rates); in update_supported_formats() 1712 iodev->supported_rates = NULL; in update_supported_formats() 1718 err = cras_alsa_fill_properties(aio->handle, &iodev->supported_rates, in update_supported_formats() 1728 free(iodev->supported_rates); in update_supported_formats() 1729 iodev->supported_rates = (size_t *)malloc( in update_supported_formats() 1730 2 * sizeof(iodev->supported_rates[0])); in update_supported_formats() 1731 iodev->supported_rates[0] = fixed_rate; in update_supported_formats() 1732 iodev->supported_rates[1] = 0; in update_supported_formats()
|
D | cras_empty_iodev.c | 187 iodev->supported_rates = empty_supported_rates; in empty_iodev_create()
|
D | test_iodev.c | 182 iodev->supported_rates = test_supported_rates; in test_iodev_create()
|
D | cras_iodev.h | 287 size_t *supported_rates; member
|
D | cras_loopback_iodev.c | 286 iodev->supported_rates = loopback_supported_rates; in create_loopback_iodev()
|
/external/adhd/cras/src/tests/ |
D | bt_io_unittest.cc | 85 d->supported_rates = NULL; in SetUpIodev() 92 free(iodev->supported_rates); in update_supported_formats() 95 iodev->supported_rates = in update_supported_formats() 96 (size_t*)calloc(2, sizeof(*iodev->supported_rates)); in update_supported_formats() 97 iodev->supported_rates[0] = 48000; in update_supported_formats() 98 iodev->supported_rates[1] = 0; in update_supported_formats() 197 free(iodev_.supported_rates); in TEST_F()
|
D | hfp_alsa_iodev_unittest.cc | 216 size_t supported_rates[] = {8000, 0}; in TEST_F() local 221 fake_sco_out.supported_rates = supported_rates; in TEST_F() 233 EXPECT_EQ(supported_rates[i], iodev->supported_rates[i]); in TEST_F()
|
D | iodev_list_unittest.cc | 159 d1_.supported_rates = sample_rates_; in SetUp() 172 d2_.supported_rates = sample_rates_; in SetUp() 185 d3_.supported_rates = sample_rates_; in SetUp() 199 loopback_input.supported_rates = sample_rates_; in SetUp()
|
/external/wpa_supplicant_8/src/ap/ |
D | ap_list.h | 22 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member
|
D | ap_list.c | 44 int rate = (ap->supported_rates[i] & 0x7f) * 5; in ap_list_beacon_olbc() 192 merge_byte_arrays(ap->supported_rates, WLAN_SUPP_RATES_MAX, in ap_list_process_beacon()
|
D | sta_info.h | 116 u8 supported_rates[WLAN_SUPP_RATES_MAX]; member
|
D | hw_features.c | 199 if (iface->conf->supported_rates && in hostapd_prepare_rates() 200 !hostapd_rate_found(iface->conf->supported_rates, in hostapd_prepare_rates()
|
D | ap_config.h | 945 int *supported_rates; member
|
D | sta_info.c | 741 sta->supported_rates[i] = hapd->iface->basic_rates[i] / 5; in ap_sta_add() 1554 sta->supported_rates, in ap_sta_re_add()
|
D | ctrl_iface_ap.c | 236 sta->supported_rates[i], in hostapd_ctrl_iface_sta_mib()
|
/external/autotest/server/cros/network/ |
D | hostap_config.py | 514 def supported_rates(self): member in HostapConfig 531 supported_rates=None, argument 655 self._supported_rates = supported_rates
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | mesh_mpm.c | 132 sizeof(sta->supported_rates)) { in copy_supp_rates() 141 sta->supported_rates, sizeof(sta->supported_rates), in copy_supp_rates() 762 params.supp_rates = sta->supported_rates; in mesh_mpm_add_peer()
|