/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan_policy/ |
D | StartStopClientConnectionsTest.py | 50 self.security_type = WPA2 51 security = hostapd_security.Security(security_mode=self.security_type, 77 def connect_and_validate(self, fd, ssid, security_type, expected_response): argument 83 ssid, security_type) 162 self.ssid, self.security_type, password=self.password): 165 self.connect_and_validate(fd, self.ssid, self.security_type, 174 self.ssid, self.security_type, password=self.password): 180 self.connect_and_validate(fd, self.ssid, self.security_type, 184 self.ssid, self.security_type): 192 self.ssid, self.security_type, DISCONNECTED,
|
D | SavedNetworksTest.py | 76 def save_bad_network(self, fd, ssid, security_type, password=""): argument 87 security_type, 94 def check_get_saved_network(self, fd, ssid, security_type, credential_type, argument 110 "security_type": security_type, 157 def save_and_check_network(self, ssid, security_type, password=""): argument 169 ssid, security_type, password=password): 171 self.check_get_saved_network(fd, ssid, security_type, 175 def start_ap(self, ssid, security_type, password=None, hidden=False): argument 186 if security_type == None or security_type.upper() == SECURITY_NONE: 189 security = hostapd_security.Security(security_mode=security_type, [all …]
|
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/ |
D | wlan_policy_lib.py | 66 def wlanSaveNetwork(self, target_ssid, security_type, target_pwd=None): argument 82 "security_type": str(security_type).lower(), 88 def wlanRemoveNetwork(self, target_ssid, security_type, target_pwd=None): argument 101 "security_type": str(security_type).lower(), 128 def wlanConnect(self, target_ssid, security_type): argument 142 "security_type": str(security_type).lower()
|
D | wlan_ap_policy_lib.py | 25 def wlanStartAccessPoint(self, target_ssid, security_type, target_pwd, argument 47 "security_type": security_type.lower(), 55 def wlanStopAccessPoint(self, target_ssid, security_type, target_pwd=""): argument 71 "security_type": security_type.lower(),
|
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/lib_controllers/ |
D | wlan_policy_controller.py | 231 security_type, argument 254 if not self.remove_network(ssid, security_type, password=password): 257 security_type, 276 def save_network(self, ssid, security_type, password=None): argument 288 ssid, security_type, target_pwd=password) 295 def remove_network(self, ssid, security_type, password=None): argument 307 ssid, security_type, target_pwd=password) 344 def send_connect_command(self, ssid, security_type): argument 358 ssid, security_type) 366 def wait_for_connect(self, ssid, security_type, timeout=30): argument [all …]
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/abstract_devices/ |
D | wlan_device.py | 497 def save_network(self, target_ssid, security_type=None, target_pwd=None): argument 502 if security_type and security_type not in FUCHSIA_VALID_SECURITY_TYPES: 503 raise TypeError('Invalid security type: %s' % security_type) 505 target_ssid, security_type, password=target_pwd):
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan/functional/ |
D | SoftApTest.py | 112 security_type = config.get('security_type', SECURITY_OPEN) 118 if security_type != SECURITY_OPEN and password == '': 119 password = generate_random_password(security_mode=security_type) 125 'security_type': security_type, 230 security_type = settings['security_type'] 238 ssid, security_type, password, connectivity_mode, operating_band) 256 security_type = settings['security_type'] 260 ssid, security_type, password)
|
D | ChannelSwitchTest.py | 303 security_type = 'none' 311 ssid, security_type, password, connectivity_mode, operating_band)
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_retail_ap/ |
D | __init__.py | 560 def set_security(self, network, security_type, *password): argument 571 'security_type': str(security_type), 578 'security_type': str(security_type)
|