Home
last modified time | relevance | path

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

/tools/test/connectivity/acts/tests/google/wifi/
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']
274 def start_scan(self, scan_setting): argument
275 data = wutils.start_wifi_background_scan(self.dut, scan_setting)
279 self.wifi_chs, scan_setting, self.stime_channel)
[all …]
DWifiScannerScanTest.py197 result_rt, scan_setting): argument
221 self.wifi_chs, scan_setting, self.stime_channel)
261 def wifi_scanner_single_scan(self, scan_setting): argument
273 data = wutils.start_wifi_single_scan(self.dut, scan_setting)
282 self.wifi_chs, scan_setting, self.stime_channel)
297 results, scan_rt, event["data"][KEY_RET], scan_setting)
317 def wifi_scanner_single_scan_full(self, scan_setting): argument
332 data = wutils.start_wifi_single_scan(self.dut, scan_setting)
338 self.wifi_chs, scan_setting, self.stime_channel)
350 scan_setting))
[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/framework/acts/test_utils/wifi/
Dwifi_test_utils.py857 def start_wifi_background_scan(ad, scan_setting): argument
867 idx = ad.droid.wifiScannerStartBackgroundScan(scan_setting)
1374 def start_wifi_single_scan(ad, scan_setting): argument
1384 idx = ad.droid.wifiScannerStartScan(scan_setting)
1413 def get_scan_time_and_channels(wifi_chs, scan_setting, stime_channel): argument
1428 if "band" in scan_setting and "channels" not in scan_setting:
1429 scan_channels = wifi_chs.band_to_freq(scan_setting["band"])
1430 elif "channels" in scan_setting and "band" not in scan_setting:
1431 scan_channels = scan_setting["channels"]