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

  /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...]
  /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...]
  /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/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...]
ap_config.h 474 u8 hessid[ETH_ALEN]; member in struct:hostapd_bss_config
  /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...]
  /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.h 1054 * hessid - Homogeneous ESS identifier or %NULL if not set
1056 const u8 *hessid; member in struct:wpa_driver_ap_params
    [all...]

Completed in 983 milliseconds