HomeSort by relevance Sort by last modified time
    Searched refs:BSSID (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
StateChangeResult.java 29 StateChangeResult(int networkId, WifiSsid wifiSsid, String BSSID,
33 this.BSSID = BSSID;
39 String BSSID;
47 sb.append(" BSSID: ").append(BSSID);
WifiMonitor.java 136 * <code>xx:xx:xx:xx:xx:xx</code> is the BSSID of the associated access point
230 * CTRL-EVENT-DISCONNECTED - bssid=ac:22:0b:24:70:74 reason=3 locally_generated=1
239 * CTRL-EVENT-ASSOC-REJECT - bssid=ac:22:0b:24:70:74 status_code=1
323 bssid=fa:7b:7a:42:82:13 unknown-network */
1134 String bssid = null; local
    [all...]
WifiAutoJoinController.java 175 ScanResult sr = scanResultCache.get(result.BSSID);
185 // If there was a previous cache result for this BSSID, average the RSSI values
189 scanResultCache.remove(result.BSSID);
200 wkey = new WifiKey("\"" + result.SSID + "\"", result.BSSID);
215 logDbg(result.SSID + " " + result.BSSID + " rssi="
224 logDbg(result.SSID + " " + result.BSSID + " rssi="
229 // scanResultCache.put(result.BSSID, new ScanResult(result));
230 scanResultCache.put(result.BSSID, result);
231 // Add this BSSID to the scanResultCache of a Saved WifiConfiguration
234 // If not successful, try to associate this BSSID to an existing Saved WifiConfiguratio
    [all...]
WifiNetworkScoreCache.java 46 // The key is of the form "<ssid>"<bssid>
147 if (network.networkKey.wifiKey.bssid != null) {
148 key = key + network.networkKey.wifiKey.bssid;
162 if (result.BSSID != null) {
163 key.append(result.BSSID);
WifiConfigStore.java 187 private static final String BSSID_KEY = "BSSID: ";
188 private static final String BSSID_KEY_END = "/BSSID: ";
695 * Update the configuration and BSSID with latest RSSI value.
714 + " BSSID=" + result.BSSID
1868 String bssid = null; local
    [all...]
WifiScanningServiceImpl.java 548 ScanResult newResult = new ScanResult(wifiSsid, result.BSSID, "",
579 ScanResult newResult = new ScanResult(wifiSsid, result.BSSID, "",
627 if (result.BSSID.equalsIgnoreCase(BssidInfo.bssid)) {
643 if (result.BSSID.equalsIgnoreCase(BssidInfo.bssid)) {
    [all...]
WifiStateMachine.java 156 * the corresponding BSSID.
333 // This is the BSSID we are trying to associate to, it can be set to "any"
334 // if we havent selected a BSSID for joining.
335 // if we havent selected a BSSID for joining.
336 // The BSSID we are associated to is found in mWifiInfo
354 public void autoRoamSetBSSID(int netId, String bssid) {
355 autoRoamSetBSSID(mWifiConfigStore.getWifiConfiguration(netId), bssid); local
358 public boolean autoRoamSetBSSID(WifiConfiguration config, String bssid) {
361 if (bssid == null) bssid = "any"
1509 String bssid = null; local
2604 String bssid = (String)msg.obj; local
3316 String bssid = ""; local
6234 String bssid; local
7547 String bssid = (String)message.obj; local
7738 String bssid = "any"; local
    [all...]
WifiNative.java 349 * bssid=68:7f:74:d7:1b:6e
369 * bssid=00:03:7f:40:84:10
395 public String scanResult(String bssid) {
396 return doStringCommand("BSS " + bssid);
564 public boolean addToBlacklist(String bssid) {
565 if (TextUtils.isEmpty(bssid)) return false;
566 return doBooleanCommand("BLACKLIST " + bssid);
640 public boolean startWpsPbc(String bssid) {
641 if (TextUtils.isEmpty(bssid)) {
644 return doBooleanCommand("WPS_PBC " + bssid);
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java 44 public String BSSID;
51 BSSID = null;
59 sbuf.append(" BSSID: ").append(BSSID);
75 BSSID = source.BSSID;
83 dest.writeString(BSSID);
93 config.BSSID = in.readString();
ScanResult.java 42 public String BSSID;
227 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency,
231 this.BSSID = BSSID;
241 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency,
245 this.BSSID = BSSID;
259 BSSID = source.BSSID;
290 append(", BSSID: ")
    [all...]
WifiLinkLayerStats.java 52 * When set. this is the BSSID the radio is currently associated with.
57 public String BSSID;
127 if (this.BSSID != null) {
128 sbuf.append(" BSSID: ").append(this.BSSID).append('\n');
185 dest.writeString(BSSID);
198 stats.BSSID = in.readString();
WifiConfiguration.java 45 public static final String bssidVarName = "bssid";
231 * associating with the AP having the specified BSSID. The value is
235 public String BSSID;
387 * BSSID list on which this configuration was seen.
486 public long age5; // timestamp of the strongest 5GHz BSSID (last time it was seen)
487 public long age24; // timestamp of the strongest 2.4GHz BSSID (last time it was seen)
572 //number of known BSSID on 5GHz band
576 //number of known BSSID on 2.4Ghz band
586 status.BSSID5 = result.BSSID;
592 status.BSSID24 = result.BSSID;
    [all...]
WifiInfo.java 310 public void setBSSID(String BSSID) {
311 mBSSID = BSSID;
315 * Return the basic service set identifier (BSSID) of the current access point.
316 * The BSSID may be {@code null} if there is no network currently connected.
317 * @return the BSSID, in the form of a six-byte MAC address: {@code XX:XX:XX:XX:XX:XX}
510 append(", BSSID: ").append(mBSSID == null ? none : mBSSID).
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowScanResult.java 14 public static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int frequency) {
17 scanResult.BSSID = BSSID;
28 .append(", BSSID: ").append(valueOrNone(realObject.BSSID))
ShadowWifiConfiguration.java 16 realObject.BSSID = null;
36 config.BSSID = realObject.BSSID;
  /cts/tests/tests/net/src/android/net/wifi/cts/
ScanResultTest.java 158 String BSSID = null;
160 /* Multiple scans to ensure bssid is updated */
167 BSSID = result.BSSID;
179 if (result.BSSID.equals(BSSID)) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ScanResultTest.java 18 ScanResult scanResult = ShadowScanResult.newInstance("SSID", "BSSID", "Caps", 11, 42);
20 assertThat(scanResult.BSSID, equalTo("BSSID"));
WifiConfigurationTest.java 27 wifiConfiguration.BSSID = "BSSID";
47 assertThat(copy.BSSID, equalTo("BSSID"));
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 103 String bssid; field in class:AccessPoint
234 bssid = config.BSSID;
242 bssid = result.BSSID;
344 mScanResultCache.put(result.BSSID, result);
457 String bssid = null; local
462 bssid = mInfo.getBSSID();
463 if (bssid != null) {
464 visibility.append(" ").append(bssid);
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WifiConfigHelper.java 44 * If there are exactly 12 hex digits, this looks like a BSSID
65 // if this looks like a BSSID, don't quote it
75 // there is no possibility this is a BSSID in disguise.
110 if (scanResult.BSSID == null || wifiInfo.getBSSID() == null) {
119 TextUtils.equals(scanResult.BSSID, wifiInfoBSSID) &&
WifiNetworksBrowseInfo.java 140 ", BSSID=" + network.BSSID +
142 ", current connected BSSID=" + currentConnection.getBSSID());
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
SelectFromListWizardFragment.java 222 + " and bssid " + (mLastSelected.getScanResult() == null ? null
223 : mLastSelected.getScanResult().BSSID));
322 : mLastSelected.getScanResult().SSID) + " and bssid "
324 : mLastSelected.getScanResult().BSSID));
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.c 159 NDIS_802_11_MAC_ADDRESS MacAddress; /* BSSID */
174 NDIS_WLAN_BSSID_EX Bssid[1];
197 NDIS_802_11_MAC_ADDRESS BSSID;
205 NDIS_802_11_MAC_ADDRESS BSSID;
249 NDIS_802_11_MAC_ADDRESS BSSID;
270 NDIS_802_11_MAC_ADDRESS BSSID;
284 NDIS_802_11_MAC_ADDRESS Bssid;
324 NDIS_802_11_MAC_ADDRESS BSSID;
335 NDIS_802_11_MAC_ADDRESS BSSID;
643 static int wpa_driver_ndis_get_bssid(void *priv, u8 *bssid)
988 u8 bssid[ETH_ALEN]; local
1458 u8 bssid[ETH_ALEN]; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 87 struct ether_addr BSSID;
119 struct ether_addr BSSID;
152 struct ether_addr BSSID;
194 struct ether_addr BSSID;
245 struct ether_addr BSSID;
369 struct ether_addr bssid; /* default: bcast */ member in struct:wl_scan_params
481 struct ether_addr bssid; member in struct:wl_probe_params
507 /* used for association with a specific BSSID and chanspec list */
509 struct ether_addr bssid; /* 00:00:00:00:00:00: broadcast scan */ member in struct:wl_assoc_params
510 uint16 bssid_cnt; /* 0: use chanspec_num, and the single bssid,
4019 struct ether_addr bssid[1]; \/* max ANQPO_MAX_IGNORE_BSSID *\/ member in struct:__anon40225
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddndis.h 629 NDIS_802_11_MAC_ADDRESS Bssid;
695 NDIS_802_11_MAC_ADDRESS BSSID;
703 NDIS_802_11_MAC_ADDRESS BSSID;
753 NDIS_WLAN_BSSID Bssid[1];
773 NDIS_WLAN_BSSID_EX Bssid[1];
    [all...]

Completed in 857 milliseconds

1 2