Searched refs:BSSID (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/
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 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();
H A DScanResult.java36 public String BSSID; field in class:ScanResult
79 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
83 this.BSSID = BSSID;
93 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
97 this.BSSID = BSSID;
111 BSSID = source.BSSID;
128 append(", BSSID
[all...]
H A DWifiMonitor.java104 * <code>xx:xx:xx:xx:xx:xx</code> is the BSSID of the associated access point
853 String BSSID = null;
862 if (nameValue[0].equals("BSSID")) {
863 BSSID = nameValue[1];
893 notifySupplicantStateChange(networkId, wifiSsid, BSSID, newSupplicantState);
897 String BSSID = null;
902 if (DBG) Log.d(TAG, "Could not find BSSID in CONNECTED event string");
904 BSSID = match.group(1);
911 notifyNetworkStateChange(newState, BSSID, networkId);
920 * @param BSSID whe
925 notifyNetworkStateChange(NetworkInfo.DetailedState newState, String BSSID, int netId) argument
945 notifySupplicantStateChange(int networkId, WifiSsid wifiSsid, String BSSID, SupplicantState newState) argument
[all...]
H A DWifiConfiguration.java209 * associating with the AP having the specified BSSID. The value is
213 public String BSSID; field in class:WifiConfiguration
332 BSSID = null;
383 append(" BSSID: ").append(this.BSSID).append(" PRIO: ").append(this.priority).
469 BSSID = scannedAP.BSSID;
585 BSSID = source.BSSID;
616 dest.writeString(BSSID);
[all...]
H A DWifiInfo.java141 void setBSSID(String BSSID) { argument
142 mBSSID = BSSID;
146 * Return the basic service set identifier (BSSID) of the current access point.
147 * The BSSID may be {@code null} if there is no network currently connected.
148 * @return the BSSID, in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}
302 append(", BSSID: ").append(mBSSID == null ? none : mBSSID).
H A DWifiConfigStore.java511 if (mWifiNative.startWpsRegistrar(config.BSSID, config.pin)) {
529 result.pin = mWifiNative.startWpsPinDisplay(config.BSSID);
548 if (mWifiNative.startWpsPbc(config.BSSID)) {
1110 if (config.BSSID != null &&
1114 config.BSSID)) {
1115 loge("failed to set BSSID: "+config.BSSID);
1474 config.BSSID = value;
1476 config.BSSID = null;
H A DWifiStateMachine.java347 /* Blacklist network. De-prioritizes the given BSSID for connection. */
1464 * Blacklist a BSSID. This will avoid the AP if there are
1467 * @param bssid BSSID of the network
2253 mWifiInfo.setBSSID(stateChangeResult.BSSID);
/frameworks/base/services/java/com/android/server/wifi/
H A DWifiService.java1212 pw.println(" BSSID Frequency RSSI Flags SSID");
1215 r.BSSID,

Completed in 116 milliseconds