HomeSort by relevance Sort by last modified time
    Searched refs:hessid (Results 1 - 21 of 21) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
AnqpCache.java 36 private CacheKey(String ssid, long bssid, long hessid) {
39 mHESSID = hessid;
45 * HESSID domainID standardESS Key content Rationale
50 * set set n/a HESSID The ESS is defined by the HESSID
61 long hessid; local
65 hessid = 0L;
70 hessid = network.getHESSID();
75 hessid = 0L;
78 return new CacheKey(ssid, bssid, hessid);
    [all...]
NetworkDetail.java 252 mHESSID = interworking.hessid;
512 return String.format("NetworkInfo{SSID='%s', HESSID=%x, BSSID=%x, StationCount=%d, " +
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 48 * The HESSID from the beacon.
51 public long hessid; field in class:ScanResult
353 public ScanResult(WifiSsid wifiSsid, String BSSID, long hessid, int anqpDomainId,
358 this.hessid = hessid;
397 public ScanResult(String Ssid, String BSSID, long hessid, int anqpDomainId, String caps,
403 this.hessid = hessid;
422 public ScanResult(WifiSsid wifiSsid, String Ssid, String BSSID, long hessid, int anqpDomainId,
426 this(Ssid, BSSID, hessid, anqpDomainId, caps, level, frequency, tsf, distCm
    [all...]
  /external/wpa_supplicant_8/src/ap/
beacon.c 811 const u8 *hessid; local
813 hessid = elems.interworking + 1;
815 hessid = elems.interworking + 1 + 2;
816 if (!is_broadcast_ether_addr(hessid) &&
817 os_memcmp(hessid, hapd->conf->hessid, ETH_ALEN) != 0) {
819 " for mismatching HESSID " MACSTR
821 MAC2STR(mgmt->sa), MAC2STR(hessid));
    [all...]
ieee802_11_shared.c 324 if (!is_zero_ether_addr(hapd->conf->hessid)) {
325 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN);
ap_config.h 474 u8 hessid[ETH_ALEN]; member in struct:hostapd_bss_config
ieee802_1x.c 559 !is_zero_ether_addr(hapd->conf->hessid)) {
561 MAC2STR(hapd->conf->hessid));
567 wpa_printf(MSG_ERROR, "Could not add WLAN-HESSID");
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
HomeSP.java 35 private final Map<String, Long> mSSIDs; // SSID, HESSID, [0,N]
189 Long hessid = mSSIDs.get(networkDetail.getSSID()); local
190 if (hessid == null || networkDetail.getHESSID() == hessid) {
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 76 /** HESSID */
77 u8 hessid[ETH_ALEN]; member in struct:wpa_bss
config.h 876 * hessid - Homogenous ESS identifier
882 u8 hessid[ETH_ALEN]; member in struct:wpa_config
    [all...]
bss.c 38 os_memset(bss->hessid, 0, ETH_ALEN);
42 os_memcpy(bss->hessid, ie + 3, ETH_ALEN);
44 os_memcpy(bss->hessid, ie + 5, ETH_ALEN);
    [all...]
config_file.c 1187 if (!is_zero_ether_addr(config->hessid))
1188 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
    [all...]
interworking.c     [all...]
scan.c 421 wpabuf_put_u8(buf, is_zero_ether_addr(wpa_s->conf->hessid) ? 1 :
425 if (!is_zero_ether_addr(wpa_s->conf->hessid))
426 wpabuf_put_data(buf, wpa_s->conf->hessid, ETH_ALEN);
    [all...]
config.c     [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUInfo.java 44 mHESSID = scanResult.hessid;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
InformationElementUtil.java 165 public long hessid = 0L; field in class:InformationElementUtil.Interworking
175 // Len 1 none, 3 venue-info, 7 HESSID, 9 venue-info & HESSID
192 hessid = getInteger(data, ByteOrder.BIG_ENDIAN, 6);
  /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...]
driver.h 1054 * hessid - Homogeneous ESS identifier or %NULL if not set
1056 const u8 *hessid; member in struct:wpa_driver_ap_params
    [all...]
  /external/wpa_supplicant_8/hostapd/
config_file.c     [all...]

Completed in 1137 milliseconds