Home
last modified time | relevance | path

Searched refs:scan_setting (Results 1 – 4 of 4) sorted by relevance

/tools/test/connectivity/acts_tests/tests/google/wifi/
DWifiScannerScanTest.py182 result_rt, scan_setting): argument
206 self.wifi_chs, scan_setting, self.stime_channel)
251 def wifi_scanner_single_scan(self, scan_setting): argument
263 data = wutils.start_wifi_single_scan(self.dut, scan_setting)
272 self.wifi_chs, scan_setting, self.stime_channel)
287 results, scan_rt, event["data"][KEY_RET], scan_setting)
307 def wifi_scanner_single_scan_full(self, scan_setting): argument
322 data = wutils.start_wifi_single_scan(self.dut, scan_setting)
328 self.wifi_chs, scan_setting, self.stime_channel)
340 scan_setting))
[all …]
DWifiScannerMultiScanTest.py44 def __init__(self, scan_setting, scan_channels): argument
45 self.scan_setting = scan_setting
70 expected_interval = self.scan_setting['periodInMs'] * 1000
77 self.scan_setting['periodInMs']))
109 expected_num_of_results = self.scan_setting['numBssidsPerScan']
185 report_type = self.scan_setting['reportEvents']
189 expected_num_of_batches = self.scan_setting['maxScansToCache']
272 def start_scan(self, scan_setting): argument
273 data = wutils.start_wifi_background_scan(self.dut, scan_setting)
277 self.wifi_chs, scan_setting, self.stime_channel)
[all …]
DWifiScannerBssidTest.py83 def fetch_scan_result(self, scan_idx, scan_setting): argument
97 self.log.debug(scan_setting)
99 self.wifi_chs, scan_setting, self.stime_channel)
100 scan_time += scan_setting['periodInMs'
102 if scan_setting[
106 time_cache = scan_setting['periodInMs'] * 10 #default cache
115 def start_scan_and_validate_environment(self, scan_setting, argument
131 data = wutils.start_wifi_background_scan(self.dut, scan_setting)
133 results = self.fetch_scan_result(self.scan_idx, scan_setting)
371 scan_setting = {"band": wutils.WifiEnums.WIFI_BAND_5_GHZ,
[all …]
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/
Dwifi_test_utils.py964 def start_wifi_background_scan(ad, scan_setting): argument
974 idx = ad.droid.wifiScannerStartBackgroundScan(scan_setting)
1918 def start_wifi_single_scan(ad, scan_setting): argument
1928 idx = ad.droid.wifiScannerStartScan(scan_setting)
1957 def get_scan_time_and_channels(wifi_chs, scan_setting, stime_channel): argument
1972 if "band" in scan_setting and "channels" not in scan_setting:
1973 scan_channels = wifi_chs.band_to_freq(scan_setting["band"])
1974 elif "channels" in scan_setting and "band" not in scan_setting:
1975 scan_channels = scan_setting["channels"]