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, String SSID, String BSSID, SupplicantState state) { argument
29 this.BSSID = BSSID;
35 String BSSID; field in class:StateChangeResult
H A DScanResult.java32 public String BSSID; field in class:ScanResult
56 public ScanResult(String SSID, String BSSID, String caps, int level, int frequency) { argument
58 this.BSSID = BSSID;
72 append(", BSSID: ").
73 append(BSSID == null ? none : BSSID).
92 dest.writeString(BSSID);
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 DWifiMonitor.java97 * <code>xx:xx:xx:xx:xx:xx</code> is the BSSID of the associated access point
645 String BSSID = null;
654 if (nameValue[0].equals("BSSID")) {
655 BSSID = nameValue[1];
685 notifySupplicantStateChange(networkId, SSID, BSSID, newSupplicantState);
690 String BSSID = null;
695 if (false) Log.d(TAG, "Could not find BSSID in CONNECTED event string");
697 BSSID = match.group(1);
705 notifyNetworkStateChange(newState, BSSID, networkId);
713 * @param BSSID whe
718 notifyNetworkStateChange(NetworkInfo.DetailedState newState, String BSSID, int netId) argument
738 notifySupplicantStateChange(int networkId, String SSID, String BSSID, SupplicantState newState) argument
[all...]
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;
572 BSSID = source.BSSID;
603 dest.writeString(BSSID);
[all...]
H A DWifiInfo.java125 void setBSSID(String BSSID) { argument
126 mBSSID = BSSID;
130 * Return the basic service set identifier (BSSID) of the current access point.
131 * The BSSID may be {@code null} if there is no network currently connected.
132 * @return the BSSID, in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}
283 append(", BSSID: ").append(mBSSID == null ? none : mBSSID).
H A DWifiConfigStore.java445 if (mWifiNative.startWpsRegistrar(config.BSSID, config.pin)) {
463 result.pin = mWifiNative.startWpsPinDisplay(config.BSSID);
482 if (mWifiNative.startWpsPbc(config.BSSID)) {
997 if (config.BSSID != null &&
1001 config.BSSID)) {
1002 loge("failed to set BSSID: "+config.BSSID);
1327 config.BSSID = value;
1329 config.BSSID = null;
H A DWifiStateMachine.java301 /* Blacklist network. De-prioritizes the given BSSID for connection. */
965 * Blacklist a BSSID. This will avoid the AP if there are
968 * @param bssid BSSID of the network
1628 /* BSSID is valid only in ASSOCIATING state */
1629 mWifiInfo.setBSSID(stateChangeResult.BSSID);
/frameworks/base/services/java/com/android/server/
H A DWifiService.java1189 pw.println(" BSSID Frequency RSSI Flags SSID");
1192 r.BSSID,

Completed in 83 milliseconds