HomeSort by relevance Sort by last modified time
    Searched refs:ssid (Results 226 - 250 of 522) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 171 * @ssid: wpa_ssid structure for a configured network
180 struct wpa_ssid *ssid,
255 if (wpa_config_set(ssid, entry.key, value, 0) < 0)
260 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
262 if (wpa_s->current_ssid == ssid ||
272 value[0] == '"' && ssid->ssid_len) ||
273 (os_strcmp(entry.key, "ssid") == 0 && ssid->passphrase))
274 wpa_config_update_psk(ssid);
1002 u8 *ssid; local
1503 struct wpa_ssid *ssid = NULL; local
1668 struct wpa_ssid *ssid; local
1782 struct wpa_ssid *ssid; local
1836 struct wpa_ssid *ssid; local
3333 struct wpa_ssid *ssid; local
4158 struct wpa_ssid *ssid; local
4253 struct wpa_ssid *ssid = net->ssid; local
    [all...]
  /external/autotest/server/cros/network/
wifi_client.py 296 for ssid in expected_ssids:
297 if not ssid:
301 if bss.ssid == ssid:
304 raise error.TestFail('SSID %s is not in scan results: %r' %
305 (ssid, found_bsses))
608 def wait_for_bsses(self, ssid, num_bss_expected, timeout_seconds=15):
609 """Wait for all BSSes associated with given SSID to be discovered in the
612 @param ssid string name of network being queried
620 self.wifi_if, frequencies=[], ssids=[ssid])
    [all...]
connection_worker.py 104 self.ssid = assoc_params.ssid
111 self.work_client.shill.disconnect(self.ssid)
214 self.ssid, ('ready', 'portal', 'online'), WAIT_FOR_CONNECTION)
  /external/wpa_supplicant_8/wpa_supplicant/
eapol_test.c 458 struct wpa_ssid *ssid = wpa_s->current_ssid; local
464 if (ssid == NULL)
475 buflen = 100 + os_strlen(txt) + ssid->ssid_len;
480 WPA_CTRL_REQ "%s-%d:%s needed for SSID ",
481 field_name, ssid->id, txt);
486 if (ssid->ssid && buflen > len + ssid->ssid_len) {
487 os_memcpy(buf + len, ssid->ssid, ssid->ssid_len)
    [all...]
  /external/autotest/client/common_lib/cros/tendo/
privet_helper.py 199 def setup_add_wifi_credentials(self, ssid, passphrase, data={}):
202 @param ssid: string ssid of network to connect to.
207 data['wifi'] = {'ssid': ssid, 'passphrase': passphrase}
227 def wifi_setup_was_successful(self, ssid, auth_token):
230 @param ssid: string network we expect to connect to.
240 response['wifi']['ssid'] == ssid)
  /external/autotest/server/site_tests/network_WiFi_DisconnectClearsIP/
network_WiFi_DisconnectClearsIP.py 28 client_config.ssid = self.context.router.get_ssid()
  /external/autotest/server/site_tests/network_WiFi_HiddenScan/
network_WiFi_HiddenScan.py 14 """Test scanning behavior when a hidden SSID is configured."""
31 ssid=test_ssid, is_hidden=True)
  /external/autotest/server/site_tests/network_WiFi_ScanPerformance/
network_WiFi_ScanPerformance.py 35 ssid=self.context.router.get_ssid())
  /external/autotest/server/site_tests/network_WiFi_SuspendTwice/
network_WiFi_SuspendTwice.py 20 ssid=self.context.router.get_ssid())
  /external/autotest/server/site_tests/network_WiFi_WakeOnSSID/
network_WiFi_WakeOnSSID.py 45 ssid=ap_ssid, channel=1))
48 # detect scan, discover the AP with the white-listed SSID, wake
  /external/dhcpcd-6.8.2/
if-sun.c 66 if_getssid(const char *ifname, char *ssid)
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.h 66 void add_persistent(int id, const char *ssid, const char *bssid);
  /hardware/libhardware_legacy/include/hardware_legacy/
gscan.h 43 int max_number_epno_networks_by_ssid; // max number of epno entries if ssid is specified,
81 char ssid[32+1]; // null terminated member in struct:__anon31008
249 /* SSID Hotlist */
258 char ssid[32+1]; // SSID member in struct:__anon31019
267 ssid_threshold_param ssid[MAX_HOTLIST_SSID]; // hotlist SSIDs member in struct:__anon31020
320 // Therefore, it is acceptable for firmware to store a crc24, crc32 or other short hash of the SSID,
360 // If required then the firmware must store the network's SSID and not just a hash
362 // If this SSID should be considered the same network as the currently connected one for scoring
371 char ssid[32+1]; // null terminate member in struct:__anon31025
    [all...]
  /system/connectivity/shill/wifi/
mock_wifi_service.h 36 const std::vector<uint8_t>& ssid,
  /system/weaved/buffet/
ap_manager_client.h 34 void Start(const std::string& ssid);
  /external/selinux/libselinux/src/
audit2why.c 43 sepol_security_id_t ssid; member in struct:avc_t
111 rc = sepol_compute_av_reason(avc->ssid, avc->tsid, avc->tclass,
319 sepol_security_id_t ssid, tsid; local
338 rc = sepol_context_to_sid(scon, strlen(scon) + 1, &ssid);
376 rc = sepol_compute_av_reason_buffer(ssid, tsid, tclass, av, &avd, &reason, &reason_buf, 0);
384 avc->ssid = ssid;
  /external/autotest/client/cros/networking/
shill_xmlrpc_server.py 152 params.ssid,
193 params.ssid,
208 def delete_entries_for_ssid(self, ssid):
211 @param ssid string of WiFi service for which to delete entries.
222 if shill.dbus2primitive(entry[shill.ENTRY_FIELD_NAME]) == ssid:
264 def disconnect(self, ssid):
265 """Attempt to disconnect from the given ssid.
270 @param ssid string network to disconnect from.
275 result = self._wifi_proxy.disconnect_from_wifi_network(ssid)
286 def wait_for_service_states(self, ssid, states, timeout_seconds)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNetworkHistory.java 62 private static final String SSID_KEY = "SSID";
145 //loge("onWriteCalled write SSID: " + config.SSID);
179 if (config.SSID == null) {
181 logv("writeKnownNetworkHistory trying to write config with null SSID");
190 if (config.SSID != null) {
191 out.writeUTF(SSID_KEY + SEPARATOR + config.SSID + NL);
306 for (String ssid : deletedEphemeralSSIDs) {
308 out.writeUTF(ssid);
335 String ssid = null local
    [all...]
  /system/connectivity/shill/test-rpc-proxy/
proxy_rpc_server.cc 184 const std::string& ssid(params_in[0]);
185 return shill_wifi_client->DeleteEntriesForSsid(ssid);
229 const std::string& ssid = params_in[0]; local
230 return shill_wifi_client->Disconnect(ssid);
239 const std::string& ssid(params_in[0]);
250 ssid, states, GetMillisecondsFromSeconds(timeout),
288 const std::string& ssid(params_in[0]);
290 if (!shill_wifi_client->GetServiceProperties(ssid, &properties)) {
310 for (const auto& ssid : ssids) {
311 result[array_pos++] = ssid;
    [all...]
  /external/autotest/server/cros/ap_configurators/
belkinF9K1102_ap_configurator.py 166 def set_ssid(self, ssid):
167 self.add_item_to_command_list(self._set_ssid, (ssid,), 1, 900)
170 def _set_ssid(self, ssid):
174 self.set_content_of_text_field_by_xpath(ssid, xpath, abort_check=False)
175 self._ssid = ssid
295 Returns if AP supports setting the visibility (SSID broadcast).
belkinF9K1103_ap_configurator.py 102 self.get_url(page_url, page_title='Channel and SSID')
164 def set_ssid(self, ssid):
165 self.add_item_to_command_list(self._set_ssid, (ssid,), 1, 900)
168 def _set_ssid(self, ssid):
172 self.set_content_of_text_field_by_xpath(ssid, xpath, abort_check=False)
173 self._ssid = ssid
293 Returns if AP supports setting the visibility (SSID broadcast).
belkinF9K1105_ap_configurator.py 189 def set_ssid(self, ssid):
190 self.add_item_to_command_list(self._set_ssid, (ssid,), 1, 900)
193 def _set_ssid(self, ssid):
197 self.set_content_of_text_field_by_xpath(ssid, xpath, abort_check=False)
198 self._ssid = ssid
314 Returns if AP supports setting the visibility (SSID broadcast).
belkinF9K_ap_configurator.py 116 self.wait_for_object_by_xpath('//input[@name="ssid"]')
159 def set_ssid(self, ssid):
160 self.add_item_to_command_list(self._set_ssid, (ssid,), 1, 900)
163 def _set_ssid(self, ssid):
164 xpath = '//input[@name="ssid"]'
165 self.set_content_of_text_field_by_xpath(ssid, xpath, abort_check=True)
166 self._ssid = ssid
290 Returns if AP supports setting the visibility (SSID broadcast).
linksyse2000_ap_configurator.py 120 def set_ssid(self, ssid):
121 self.add_item_to_command_list(self._set_ssid, (ssid,), 1, 900)
124 def _set_ssid(self, ssid):
133 # so we can fill in the SSID
136 self.set_content_of_text_field_by_xpath(ssid, xpath)
137 self._ssid = ssid
  /hardware/qcom/wlan/qcwcn/wifi_hal/
gscan_event_handler.cpp 271 sizeof(results->ssid) <= len ? sizeof(results->ssid) : len;
272 memcpy((void *)&results[i].ssid,
340 ALOGV("gscan_parse_hotlist_ap_results: ts %" PRId64 " SSID %s "
343 results[i].ts, results[i].ssid,
514 sizeof(results->ssid) <= len ? sizeof(results->ssid) : len;
515 memcpy((void *)&results[i].ssid,
583 ALOGV("gscan_parse_hotlist_ssid_results: ts %" PRId64 " SSID %s "
586 results[i].ts, results[i].ssid,
    [all...]

Completed in 1275 milliseconds

1 2 3 4 5 6 7 8 91011>>