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

/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java30 public String SSID; field in class:ScanResult
56 public ScanResult(String SSID, String BSSID, String caps, int level, int frequency) { argument
57 this.SSID = SSID;
70 sb.append("SSID: ").
71 append(SSID == null ? none : SSID).
91 dest.writeString(SSID);
H A DWifiInfo.java79 void setSSID(String SSID) { argument
80 mSSID = SSID;
86 * Returns the service set identifier (SSID) of the current 802.11 network.
87 * If the SSID is an ASCII string, it will be returned surrounded by double
89 * SSID may be {@code null} if there is no network currently connected.
90 * @return the SSID
184 * @return {@code true} if this network does not broadcast its SSID, so an
185 * SSID-specific probe request must be used for scans.
232 sb.append("SSID: ").append(mSSID == null ? none : mSSID).
H A DWifiConfiguration.java217 * The network's SSID. Can either be an ASCII string,
223 public String SSID; field in class:WifiConfiguration
261 * This is a network that does not broadcast its SSID, so an
262 * SSID-specific probe request must be used for scans.
300 SSID = null;
324 sbuf.append("ID: ").append(this.networkId).append(" SSID: ").append(this.SSID).
406 SSID = scannedAP.SSID;
439 dest.writeString(SSID);
[all...]

Completed in 1237 milliseconds