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

12

/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);
H A DScanDetailCache.java157 return a.BSSID.compareTo(b.BSSID);
183 //number of known BSSID on 5GHz band
187 //number of known BSSID on 2.4Ghz band
193 Log.e("getVisibilityByRssi", " considering " + result.SSID + " " + result.BSSID
207 status.BSSID5 = result.BSSID;
213 status.BSSID24 = result.BSSID;
259 status.BSSID5 = result.BSSID;
260 logMsg += "5 GHz BSSID of " + result.BSSID;
[all...]
H A DScanDetail.java168 return mNetworkDetail == null ? mScanResult.BSSID : mNetworkDetail.getBSSIDString();
180 mScanResult.BSSID,
181 Utils.parseMac(mScanResult.BSSID));
206 Utils.parseMac(mScanResult.BSSID));
208 return String.format("'%s'/----", mScanResult.BSSID);
H A DWifiQualifiedNetworkSelector.java113 * class save the blacklist status of a given BSSID
375 //same BSSID award
378 sbuf.append(" Same BSSID with current association. Bonus: " + mSameBssidAward);
431 sbuf.append(" " + getNetworkString(network) + " " + " User Preferred BSSID:"
432 + network.BSSID + " FQDN:" + network.FQDN + " "
522 * enable/disable a BSSID for Quality Network Selection
524 * BSSID but supplicant still can try to connect to this bssid. If supplicant connect to it
556 * update the buffered BSSID blacklist
588 * select a new qualified network/BSSID to connect to
620 // Always get the current BSSID fro
[all...]
H A DWifiMonitor.java147 * <code>xx:xx:xx:xx:xx:xx</code> is the BSSID of the associated access point
843 // Tack on the last connected BSSID so we have some idea what AP the WNM pertains to
895 Log.w(TAG, "Failed to parse out BSSID from '" + eventStr + "'");
999 String BSSID = "";
1007 BSSID = match.group(1);
1010 // Under such case Supplicant does not report BSSID
1011 BSSID = null;
1020 sendMessage(iface, ASSOCIATION_REJECTION_EVENT, eventLogCounter, status, BSSID);
1080 String BSSID = null;
1083 BSSID
[all...]
H A DWifiNetworkScoreCache.java170 if (result.BSSID != null) {
171 key.append(result.BSSID);
H A DWifiNetworkHistory.java68 private static final String BSSID_KEY = "BSSID";
69 private static final String BSSID_KEY_END = "/BSSID";
193 if (config.BSSID != null) {
194 out.writeUTF(CONFIG_BSSID_KEY + SEPARATOR + config.BSSID + NL);
285 + result.BSSID + NL);
398 config.BSSID = value.equals("null") ? null : value;
H A DWifiStateMachine.java167 * the corresponding BSSID.
378 // This is the BSSID we are trying to associate to, it can be set to "any"
379 // if we havent selected a BSSID for joining.
380 // if we havent selected a BSSID for joining.
381 // The BSSID we are associated to is found in mWifiInfo
416 && bssid.equals(mTargetRoamBSSID) && bssid.equals(config.BSSID)) {
425 if (config.BSSID != null) {
426 bssid = config.BSSID;
428 Log.d(TAG, "force BSSID to " + bssid + "due to config");
441 * set Config's default BSSID (fo
[all...]
H A DWifiConfigStore.java626 //set selected BSSID to supplicant
630 loge("failed to set BSSID: " + bssid);
939 * Set BSSID for a network in wpa_supplicant from network selection.
942 * @param bssid BSSID to be set.
955 loge("Set BSSID of network in wpa_supplicant failed on " + config.networkId);
1118 * Clear BSSID blacklist in wpa_supplicant.
1128 * Add a BSSID to the blacklist.
1180 if (mWifiNative.startWpsRegistrar(config.BSSID, config.pin)) {
1200 result.pin = mWifiNative.startWpsPinDisplay(config.BSSID);
1221 if (mWifiNative.startWpsPbc(config.BSSID)) {
[all...]
H A DWifiLastResortWatchdog.java52 * Maximum number of scan results received since we last saw a BSSID.
57 * BSSID used to increment failure counts against ALL bssids associated with a particular SSID
66 * Key:BSSID, Value:Counters of failure types
106 String bssid = scanResult.BSSID;
245 // SSID count is incremented within the BSSID counting method
268 * Update the per-BSSID failure count
454 * BSSID and returns the SSID count
H A DWifiConnectivityManager.java619 String targetBssid = scanResultCandidate.BSSID;
623 // BSSID. mWifiInfo.mBSSID tracks the currently connected BSSID. This is checked just
624 // in case the firmware automatically roamed to a BSSID different from what QNS
659 mStateMachine.autoConnectToNetwork(candidate.networkId, scanResultCandidate.BSSID);
1054 // Reset BSSID of last connection attempt and kick off
1099 * Track whether a BSSID should be enabled or disabled for QNS
1108 // Disabling a BSSID can happen when the AP candidate to connect to has
/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 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 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 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...]
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).
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DScanDetailUtil.java36 NetworkDetail networkDetail = new NetworkDetail(scanResult.BSSID,
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUCache.java54 return mScanResult.BSSID.equals(scanResult.BSSID);
H A DOSUInfo.java43 mBSSID = Utils.parseMac(scanResult.BSSID);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
H A DScanDetailUtilTest.java105 assertEquals("NetworkDetail BSSID", input.BSSID,
107 assertEquals("getBSSIDString", input.BSSID, output.getBSSIDString());
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java154 mScanResultCache.put(result.BSSID, result);
527 // number of known BSSID on 5GHz band
532 // number of known BSSID on 2.4Ghz band
544 scans5GHz.append(" \n{").append(result.BSSID);
545 if (bssid != null && result.BSSID.equals(bssid)) scans5GHz.append("*");
558 scans24GHz.append(" \n{").append(result.BSSID);
559 if (bssid != null && result.BSSID.equals(bssid)) scans24GHz.append("*");
677 bssid = config.BSSID;
685 bssid = result.BSSID;
712 /* Update the LRU timestamp, if BSSID exist
[all...]
H A DWifiTracker.java282 mScanResultCache.put(newResult.BSSID, newResult);
283 mSeenBssids.put(newResult.BSSID, mScanId);
407 && mLastInfo.getBSSID().equals(result.BSSID)
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DScanTestUtil.java248 assertEquals(prefix + "results[" + j + "].BSSID",
249 expectedResult.BSSID, actualResult.BSSID);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java1361 if (result.BSSID.equalsIgnoreCase(BssidInfo.bssid)) {
1375 if (result.BSSID.equalsIgnoreCase(BssidInfo.bssid)) {
2353 ScanResult saved = bssidToScanResult.get(result.BSSID);
2355 bssidToScanResult.put(result.BSSID, result);
2357 bssidToScanResult.put(result.BSSID, result);
2413 BssidInfo.bssid = brightest[i].BSSID;
2442 result.BSSID = settings.bssidInfos[i].bssid;
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DWifiNetworkAdapter.java294 config.BSSID = Utils.macToString(osuInfo.getOSUBssid());
295 Log.d(OSUManager.TAG, String.format("Setting BSSID of '%s' to %012x",

Completed in 3411 milliseconds

12