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

/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java36 public String BSSID; field in class:ScanResult
60 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
64 this.BSSID = BSSID;
77 BSSID = source.BSSID;
92 append(", BSSID: ").
93 append(BSSID == null ? none : BSSID).
119 dest.writeString(BSSID);
[all...]
H A DStateChangeResult.java26 StateChangeResult(int networkId, WifiSsid wifiSsid, String BSSID, argument
30 this.BSSID = BSSID;
36 String BSSID; field in class:StateChangeResult
H A DWifiConfiguration.java290 * associating with the AP having the specified BSSID. The value is
294 public String BSSID; field in class:WifiConfiguration
405 BSSID = null;
434 append(" BSSID: ").append(this.BSSID).append(" PRIO: ").append(this.priority).
523 BSSID = scannedAP.BSSID;
593 BSSID = source.BSSID;
624 dest.writeString(BSSID);
[all...]
H A DWifiInfo.java140 void setBSSID(String BSSID) { argument
141 mBSSID = BSSID;
145 * Return the basic service set identifier (BSSID) of the current access point.
146 * The BSSID may be {@code null} if there is no network currently connected.
147 * @return the BSSID, in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}
298 append(", BSSID: ").append(mBSSID == null ? none : mBSSID).
H A DWifiMonitor.java99 * <code>xx:xx:xx:xx:xx:xx</code> is the BSSID of the associated access point
672 String BSSID = null;
681 if (nameValue[0].equals("BSSID")) {
682 BSSID = nameValue[1];
712 notifySupplicantStateChange(networkId, wifiSsid, BSSID, newSupplicantState);
717 String BSSID = null;
722 if (false) Log.d(TAG, "Could not find BSSID in CONNECTED event string");
724 BSSID = match.group(1);
732 notifyNetworkStateChange(newState, BSSID, networkId);
740 * @param BSSID whe
745 notifyNetworkStateChange(NetworkInfo.DetailedState newState, String BSSID, int netId) argument
765 notifySupplicantStateChange(int networkId, WifiSsid wifiSsid, String BSSID, SupplicantState newState) argument
[all...]
H A DWpsInfo.java46 public String BSSID; field in class:WpsInfo
53 BSSID = null;
61 sbuf.append(" BSSID: ").append(BSSID);
77 BSSID = source.BSSID;
85 dest.writeString(BSSID);
95 config.BSSID = in.readString();

Completed in 133 milliseconds