Searched defs:SSID (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConnectionStatistics.java38 * history of past connection to untrusted SSID
39 * Key = SSID
63 public void incrementOrAddUntrusted(String SSID, int connection, int usage) { argument
65 if (TextUtils.isEmpty(SSID))
67 if (untrustedNetworkHistory.containsKey(SSID)) {
68 stats = untrustedNetworkHistory.get(SSID);
77 untrustedNetworkHistory.put(SSID, stats);
H A DWifiLinkLayerStats.java39 * The network's SSID. Can either be an ASCII string,
46 public String SSID; field in class:WifiLinkLayerStats
122 if (this.SSID != null) {
123 sbuf.append(" SSID: ").append(this.SSID).append('\n');
162 if (SSID == null) return "";
163 final int length = SSID.length();
164 if (length > 2 && (SSID.charAt(0) == '"') && SSID.charAt(length - 1) == '"') {
165 return SSID
[all...]
H A DScanResult.java35 public String SSID; field in class:ScanResult
38 * Ascii encoded SSID. This will replace SSID when we deprecate it. @hide
356 this.SSID = (wifiSsid != null) ? wifiSsid.toString() : WifiSsid.NONE;
382 this.SSID = (wifiSsid != null) ? wifiSsid.toString() : WifiSsid.NONE;
401 this.SSID = Ssid;
435 SSID = source.SSID;
474 sb.append("SSID: ").
515 dest.writeString(SSID);
[all...]
H A DWifiConfiguration.java226 * The network's SSID. Can either be an ASCII string,
232 public String SSID; field in class:WifiConfiguration
299 * This is a network that does not broadcast its SSID, so an
300 * SSID-specific probe request must be used for scans.
920 * configKey is : "SSID"-WEP-WPA_PSK-WPA_EAP
1319 * The linked configuration may or may not have same SSID, and may or may not have same
1327 SSID = null;
1399 sbuf.append("ID: ").append(this.networkId).append(" SSID: ").append(this.SSID).
1599 if (SSID
[all...]
H A DWifiManager.java705 * <li>SSID</li>
1529 * @param wifiConfig SSID, security and channel details as
2100 * @param SSID, in the format of WifiConfiguration's SSID.
2103 public void disableEphemeralNetwork(String SSID) { argument
2104 if (SSID == null) throw new IllegalArgumentException("SSID cannot be null");
2106 mService.disableEphemeralNetwork(SSID);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiMetricsTest.java536 private static final String SSID = "red"; field in class:WifiMetricsTest
549 when(networkDetail.getSSID()).thenReturn(SSID);
554 config.SSID = "\"" + SSID + "\"";
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java589 * @param wifiConfig SSID, security and channel details as
863 + " SSID " + config.SSID
1344 public void disableEphemeralNetwork(String SSID) { argument
1347 mWifiStateMachine.disableEphemeralNetwork(SSID);
1491 pw.println(" BSSID Frequency RSSI Age SSID " +
1508 r.SSID == null ? "" : r.SSID,
1787 /* this is passpoint configuration; it must not have an SSID */
1788 if (!TextUtils.isEmpty(config.SSID)) {
[all...]
H A DWifiStateMachine.java385 // SSID Once connected, it will be set to invalid
473 Log.d(TAG, "target set to " + config.SSID + ":" + bssid);
1958 public void disableEphemeralNetwork(String SSID) { argument
1959 if (SSID != null) {
1960 sendMessage(CMD_DISABLE_EPHEMERAL_NETWORK, SSID);
2341 pw.println("SSID whitelist :" );
3136 // If debouncing, we dont re-select a SSID or BSSID hence
3139 // just try to reconnect to the same SSID by triggering a roam
3465 // Always indicate that SSID has changed
3501 // If we receive a supplicant state change with an empty SSID,
[all...]

Completed in 917 milliseconds