Lines Matching refs:network
44 * One Wi-Fi network visible to the device.
63 "Need at least one reference network with psk.")
64 self.network = self.reference_networks[0]["2g"]
89 """Connect to a network, crash framework, then ensure
90 we connect back to the previously connected network.
93 1. Connect to a network.
95 3. Reconnect to the previous network.
98 wutils.wifi_connect(self.dut, self.network, num_of_tries=3)
106 if wifi_info[WifiEnums.SSID_KEY] != self.network[WifiEnums.SSID_KEY]:
108 " network after crashing framework.")
112 """Connect to a network, crash wificond, then ensure
113 we connect back to the previously connected network.
116 1. Connect to a network.
119 4. Ensure we reconnect to the previous network.
122 wutils.wifi_connect(self.dut, self.network, num_of_tries=3)
129 if wifi_info[WifiEnums.SSID_KEY] != self.network[WifiEnums.SSID_KEY]:
131 " network after crashing wificond.")
135 """Connect to a network, crash wifi HAL, then ensure
136 we connect back to the previously connected network.
139 1. Connect to a network.
142 4. Ensure we reconnect to the previous network.
145 wutils.wifi_connect(self.dut, self.network, num_of_tries=3)
152 if wifi_info[WifiEnums.SSID_KEY] != self.network[WifiEnums.SSID_KEY]:
154 " network after crashing wifi HAL.")
158 """Connect to a network, crash wpa_supplicant, then ensure
159 we connect back to the previously connected network.
162 1. Connect to a network.
165 4. Ensure we reconnect to the previous network.
168 wutils.wifi_connect(self.dut, self.network, num_of_tries=3)
175 if wifi_info[WifiEnums.SSID_KEY] != self.network[WifiEnums.SSID_KEY]:
177 " network after crashing wpa_supplicant.")