/tools/test/connectivity/acts/framework/acts/test_utils/wifi/ |
D | WifiBaseTest.py | 24 import acts.controllers.access_point as ap namespace 110 ap = 0 111 for ap in range(MAX_AP_COUNT): 164 ap = 0 165 for ap in range(MAX_AP_COUNT): 234 ap = 0 235 for ap in range(MAX_AP_COUNT): 244 def update_bssid(self, ap_instance, ap, network, band): argument 254 bssid = ap.get_bssid_from_ssid(network["SSID"], band) 272 def populate_bssid(self, ap_instance, ap, networks_5g, networks_2g): argument [all …]
|
D | wifi_power_test_utils.py | 107 def ap_setup(ap, network, bandwidth=80): argument 135 iface_wlan_2g=ap.wlan_2g, 136 iface_wlan_5g=ap.wlan_5g) 137 config_bridge = ap.generate_bridge_configs(channel) 140 ap.bridge.startup(brconfigs) 141 ap.start_ap(config)
|
D | wifi_test_utils.py | 2294 def ap_setup(test, index, ap, network, bandwidth=80, channel=6): argument 2327 iface_wlan_2g=ap.wlan_2g, 2328 iface_wlan_5g=ap.wlan_5g) 2329 ap.start_ap(config)
|
/tools/test/connectivity/acts/framework/acts/test_utils/power/ |
D | PowerWiFiBaseTest.py | 73 for ap in self.access_points: 74 ap.close() 86 for ap in self.access_points: 87 ap.close() 93 ap=None): 105 if not ap: 111 self.brconfigs = wputils.ap_setup(ap, network, bandwidth=bandwidth) 115 if ap or (not ap and hasattr(self, 'access_points')):
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan/ |
D | BeaconLossTest.py | 65 self.ap = self.access_points[0] 75 self.ap.iwconfig.ap_iwconfig(self.in_use_interface, "txpower on") 76 self.ap.stop_all_aps() 83 setup_ap(access_point=self.ap, 89 self.in_use_interface = self.ap.wlan_5g 91 self.in_use_interface = self.ap.wlan_2g 106 self.ap.iwconfig.ap_iwconfig(self.in_use_interface, "txpower off") 115 self.ap.iwconfig.ap_iwconfig(self.in_use_interface, "txpower on")
|
D | RebootAPStressTest.py | 62 self.ap = self.access_points[0] 73 self.ap.stop_all_aps() 76 setup_ap(access_point=self.ap, 82 setup_ap_and_associate(access_point=self.ap, 93 self.ap.stop_all_aps()
|
D | PingStressTest.py | 52 self.ap = self.access_points[0] 53 setup_ap_and_associate(access_point=self.ap, 62 self.ap.stop_all_aps() 98 return self.send_ping(self.ap.ssh_settings.hostname)
|
D | ConnectionStressTest.py | 52 self.ap = self.access_points[0] 60 self.ap.stop_all_aps() 74 setup_ap(access_point=self.ap, 123 self.ap.stop_all_aps()
|
D | RebootStressTest.py | 46 self.ap = self.access_points[0] 51 setup_ap_and_associate(access_point=self.ap, 60 self.ap.stop_all_aps()
|
D | DownloadStressTest.py | 60 self.ap = self.access_points[0] 66 access_point=self.ap, 76 self.ap.stop_all_aps()
|
/tools/test/connectivity/acts_tests/tests/google/power/wifi/ |
D | PowerWiFiroamingTest.py | 54 ap=self.access_point_aux) 58 network_main, ap=self.access_point_main) 78 network_main, ap=self.access_point_main) 82 ap=self.access_point_aux) 126 network_main, ap=self.access_point_main) 130 ap=self.access_point_aux) 173 network_main, ap=self.access_point_main) 177 ap=self.access_point_aux)
|
/tools/test/connectivity/acts_tests/tests/google/net/ |
D | ApfCountersTest.py | 148 ap = self.access_points[0] 160 ap.send_ra('wlan1', mac_addr, 0, 1) 173 ap.send_ra('wlan1', mac_addr, interval=INTERVAL, count=count) 184 ap.send_ra('wlan1', mac_addr, interval=INTERVAL, count=1) 205 ap = self.access_points[0] 219 ap.send_ra('wlan1', mac_addr, 0, 1, rtt=rtt)
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | access_point.py | 74 for ap in aps: 75 ap.close() 87 return [ap.ssh_settings.hostname for ap in aps] 473 for ap in list(self._aps.keys()): 474 self.stop_ap(ap)
|
/tools/test/connectivity/acts_tests/tests/sample/ |
D | ConfigurableAccessPointTest.py | 27 self.ap = self.access_points[0] 30 self.ap.stop_all_aps() 33 self.ap.stop_all_aps() 38 self.ap.start_ap(config)
|
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/rtt/ |
D | rtt_test_utils.py | 439 for ap in aps: 440 events[ap["BSSID"]] = [] 469 for ap in aps: 470 events[ap["BSSID"]].append(None)
|
/tools/test/connectivity/acts/framework/acts/test_utils/coex/ |
D | CoexBaseTest.py | 96 self.ap = self.access_points[0] 97 configure_and_start_ap(self.ap, self.network) 147 self.ap.close()
|
D | coex_test_utils.py | 166 def configure_and_start_ap(ap, network): argument 184 ap.start_ap(config)
|
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/ |
D | ap_iwconfig.py | 32 def __init__(self, ap): argument 38 self.ssh = ap.ssh
|
D | bridge_interface.py | 49 def __init__(self, ap): argument 56 self.ssh = ap.ssh
|
D | ap_get_interface.py | 33 def __init__(self, ap): argument 39 self.ssh = ap.ssh
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/module/ |
D | MainlineTestModuleController.java | 68 for (ITestDevice.ApexInfo ap : mActiveApexes) { in shouldRun() 69 if (mMainlineModules.contains(ap.name)) { in shouldRun()
|
/tools/test/connectivity/acts/framework/acts/test_utils/abstract_devices/utils_lib/ |
D | wlan_utils.py | 132 ap = hostapd_ap_preset.create_ap_preset(profile_name=profile_name, 150 access_point.start_ap(hostapd_config=ap,
|
/tools/test/connectivity/acts/tests/google/wifi/rtt/functional/ |
D | RangeApSupporting11McTest.py | 229 for ap in rtt_supporting_aps: 230 rtt_configs.append(self.rtt_config_from_scan_result(ap))
|
/tools/dexter/testdata/expected/ |
D | large.rewrite | 888587 .local v0, "ap", android.media.AudioPort 895278 .params "l", "requestAttributes", "durationHint", "flags", "ap" 1018026 .params "this$0", "ap", "looper"
|
D | large.compact_cfg | 1081369 .local v0, "ap", android.media.AudioPort 1089677 .params "l", "requestAttributes", "durationHint", "flags", "ap" 1239582 .params "this$0", "ap", "looper"
|