HomeSort by relevance Sort by last modified time
    Searched full:hessid (Results 1 - 25 of 38) sorted by null

1 2

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
ANQPNetworkKey.java 24 * APs in the same ESS (SSID or HESSID) with the same ANQP domain ID will have the same ANQP
25 * information. Thus, those APs will be keyed by the ESS identifier (SSID or HESSID) and the
37 public ANQPNetworkKey(String ssid, long bssid, long hessid, int anqpDomainID) {
40 mHESSID = hessid;
47 * HESSID domainID Key content Rationale
51 * set set HESSID/domainID The ESS is defined by the HESSID
55 * @param hessid The HESSID of the AP
59 public static ANQPNetworkKey buildKey(String ssid, long bssid, long hessid, int anqpDomainId)
    [all...]
NetworkDetail.java 246 mHESSID = interworking.hessid;
491 return String.format("NetworkInfo{SSID='%s', HESSID=%x, BSSID=%x, StationCount=%d, " +
PasspointManager.java 343 ANQPNetworkKey anqpKey = ANQPNetworkKey.buildKey(scanResult.SSID, bssid, scanResult.hessid,
461 scanResult.SSID, bssid, scanResult.hessid, vsa.anqpDomainID));
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
ANQPNetworkKeyTest.java 32 private static final long HESSID = 0x789012L;
48 * Verify that building a HESSID based key works as expected.
54 ANQPNetworkKey expectedKey = new ANQPNetworkKey(null, 0, HESSID, ANQP_DOMAIN_ID);
55 ANQPNetworkKey actualKey = ANQPNetworkKey.buildKey(SSID, BSSID, HESSID, ANQP_DOMAIN_ID);
67 ANQPNetworkKey actualKey = ANQPNetworkKey.buildKey(SSID, BSSID, HESSID, 0);
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 49 * The HESSID from the beacon.
52 public long hessid; field in class:ScanResult
458 public ScanResult(WifiSsid wifiSsid, String BSSID, long hessid, int anqpDomainId,
463 this.hessid = hessid;
508 public ScanResult(String Ssid, String BSSID, long hessid, int anqpDomainId, String caps,
514 this.hessid = hessid;
536 public ScanResult(WifiSsid wifiSsid, String Ssid, String BSSID, long hessid, int anqpDomainId,
540 this(Ssid, BSSID, hessid, anqpDomainId, caps, level, frequency, tsf, distCm
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_11_shared.c 346 if (!is_zero_ether_addr(hapd->conf->hessid)) {
347 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN);
602 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid)
629 if (hessid && !is_zero_ether_addr(hapd->conf->hessid))
630 fils_info |= BIT(8); /* HESSID Included */
642 if (hessid && !is_zero_ether_addr(hapd->conf->hessid)) {
643 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN);
ieee802_11.h 140 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid);
beacon.c 870 const u8 *hessid; local
872 hessid = elems.interworking + 1;
874 hessid = elems.interworking + 1 + 2;
875 if (!is_broadcast_ether_addr(hessid) &&
876 os_memcmp(hessid, hapd->conf->hessid, ETH_ALEN) != 0) {
878 " for mismatching HESSID " MACSTR
880 MAC2STR(mgmt->sa), MAC2STR(hessid));
    [all...]
ap_config.h 488 u8 hessid[ETH_ALEN]; member in struct:hostapd_bss_config
ieee802_1x.c 563 !is_zero_ether_addr(hapd->conf->hessid)) {
565 MAC2STR(hapd->conf->hessid));
571 wpa_printf(MSG_ERROR, "Could not add WLAN-HESSID");
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 77 /** HESSID */
78 u8 hessid[ETH_ALEN]; member in struct:wpa_bss
bss.c 39 os_memset(bss->hessid, 0, ETH_ALEN);
43 os_memcpy(bss->hessid, ie + 3, ETH_ALEN);
45 os_memcpy(bss->hessid, ie + 5, ETH_ALEN);
    [all...]
config_file.c 1245 if (!is_zero_ether_addr(config->hessid))
1246 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
    [all...]
config.h 876 * hessid - Homogenous ESS identifier
882 u8 hessid[ETH_ALEN]; member in struct:wpa_config
    [all...]
README-HS20 85 #hessid=00:11:22:33:44:55
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
HomeSP.java 13 private final Map<String, Long> mSSIDs; // SSID, HESSID, [0,N]
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
WifiTrackerTest.java 246 0, // hessid
259 0, // hessid
656 0, // hessid
704 0, // hessid
    [all...]
  /frameworks/base/wifi/tests/assets/pps/
PerProviderSubscription.xml 50 <NodeName>HESSID</NodeName>
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
InformationElementUtil.java 227 public long hessid = 0L; field in class:InformationElementUtil.Interworking
240 // Len 7: Access Network Options & HESSID
241 // Len 9: Access Network Options, Venue Info, & HESSID
251 hessid = ByteBufferReader.readInteger(data, ByteOrder.BIG_ENDIAN, 6);
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
PpsMoParser.java 158 private static final String NODE_HESSID = "HESSID";
713 * @return HashMap<String, Long> representing list of <SSID, HESSID> pair.
737 * @return Pair<String, Long> representing <SSID, HESSID> pair.
747 Long hessid = null; local
754 hessid = parseLong(getPpsNodeValue(child), 16);
764 return new Pair<String, Long>(ssid, hessid);
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/flow/
OSUInfo.java 49 mHESSID = scanResult.hessid;
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
HomeSp.java 111 * <SSID, HESSID> duple of the networks that are consider home networks.
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
InformationElementUtilTest.java 740 * | Access Network Option | Venue Info (optional) | HESSID (optional) |
    [all...]
  /external/wpa_supplicant_8/hs20/client/
osu_client.c 1094 char *ssid, *hessid; local
1102 hessid_node = get_node(ctx->xml, node, "HESSID");
1107 hessid = hessid_node ? xml_node_get_text(ctx->xml, hessid_node) : NULL;
1110 if (hessid)
1111 wpa_printf(MSG_INFO, "- HomeSP/NetworkID/<X+>/HESSID = %s",
1112 hessid);
1117 xml_node_get_text_free(ctx->xml, hessid);
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_atheros.c     [all...]

Completed in 1901 milliseconds

1 2