Searched defs:BSSID (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DStateChangeResult.java29 StateChangeResult(int networkId, WifiSsid wifiSsid, String BSSID, argument
33 this.BSSID = BSSID;
39 String BSSID; field in class:StateChangeResult
47 sb.append(" BSSID: ").append(BSSID);
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsInfo.java44 public String BSSID; field in class:WpsInfo
51 BSSID = null;
59 sbuf.append(" BSSID: ").append(BSSID);
75 BSSID = source.BSSID;
83 dest.writeString(BSSID);
93 config.BSSID = in.readString();
H A DWifiLinkLayerStats.java48 * When set. this is the BSSID the radio is currently associated with.
53 public String BSSID; field in class:WifiLinkLayerStats
125 if (this.BSSID != null) {
126 sbuf.append(" BSSID: ").append(this.BSSID).append('\n');
184 dest.writeString(BSSID);
198 stats.BSSID = in.readString();
H A DScanResult.java45 public String BSSID; field in class:ScanResult
353 public ScanResult(WifiSsid wifiSsid, String BSSID, long hessid, int anqpDomainId, argument
357 this.BSSID = BSSID;
379 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
383 this.BSSID = BSSID;
397 public ScanResult(String Ssid, String BSSID, long hessid, int anqpDomainId, String caps, argument
402 this.BSSID = BSSID;
422 ScanResult(WifiSsid wifiSsid, String Ssid, String BSSID, long hessid, int anqpDomainId, String caps, int level, int frequency, long tsf, int distCm, int distSdCm, int channelWidth, int centerFreq0, int centerFreq1, boolean is80211McRTTResponder) argument
[all...]
H A DWifiInfo.java336 public void setBSSID(String BSSID) { argument
337 mBSSID = BSSID;
341 * Return the basic service set identifier (BSSID) of the current access point.
342 * The BSSID may be {@code null} if there is no network currently connected.
343 * @return the BSSID, in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}
555 append(", BSSID: ").append(mBSSID == null ? none : mBSSID).
H A DWifiConfiguration.java235 * associating with the AP having the specified BSSID. The value is
239 public String BSSID; field in class:WifiConfiguration
478 public long age5; // timestamp of the strongest 5GHz BSSID (last time it was seen)
479 public long age24; // timestamp of the strongest 2.4GHz BSSID (last time it was seen)
1228 * BSSID for connection to this network (through network selection procedure)
1233 * get current network Selection BSSID
1234 * @return current network Selection BSSID
1241 * set network Selection BSSID
1242 * @param bssid The target BSSID for assocaition
1328 BSSID
[all...]

Completed in 7432 milliseconds