Lines Matching full:ssid
44 def configure_wifi_service(self, ssid, security, security_parameters={},
50 @param ssid string name of network to connect to.
57 @param hidden_network bool True when the SSID is not broadcasted.
70 self.SERVICE_PROPERTY_SSID: ssid,
85 logging.info('Configured service: %s', ssid)
90 ssid,
104 @param ssid string name of network to connect to.
111 @param hidden_network bool True when the SSID is not broadcasted.
128 logging.info('Attempting to connect to %s', ssid)
145 logging.info('Configuring %s as a hidden network.', ssid)
147 ssid, security, save_credentials=save_credentials,
152 'FAIL(Failed to configure hidden SSID)')
154 logging.info('Configured hidden service: %s', ssid)
159 self.SERVICE_PROPERTY_NAME: ssid,
178 ssid, strength)
218 logging.info('Associated with service: %s', ssid)
231 logging.info('Configured service: %s', ssid)
239 def disconnect_from_wifi_network(self, ssid, timeout=None):
245 @param ssid string name of network to disconnect.
256 self.SERVICE_PROPERTY_NAME: ssid}
261 'Failed to disconnect from %s, service not found.' % ssid)
272 'timed out in state: %s.' % (ssid, final_state))
327 # Note that this may cause terrible things if the SSID
329 ssid = service_properties[self.SERVICE_PROPERTY_HEX_SSID]
330 logging.info('Found active WiFi service: %s', ssid)
331 wifi_services.append(ssid.decode('hex'))
335 def wait_for_service_states(self, ssid, states, timeout_seconds):
336 """Wait for a service (ssid) to achieve one of a number of states.
338 @param ssid string name of network for whose state we're waiting.
348 self.SERVICE_PROPERTY_NAME: ssid}
358 logging.error('Timed out waiting for %s states', ssid)