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

  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 313 struct wpabuf *ies; local
317 ies = p2p_build_probe_resp_ies(p2p, NULL, 0);
318 if (ies == NULL)
325 ies) < 0) {
328 wpabuf_free(ies);
p2p.c 257 struct wpabuf *ies; local
291 ies = p2p_build_probe_resp_ies(p2p, NULL, 0);
292 if (ies == NULL)
300 ies) < 0) {
304 wpabuf_free(ies);
311 struct wpabuf *ies; local
340 ies = p2p_build_probe_resp_ies(p2p, NULL, 0);
341 if (ies == NULL)
346 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0) {
349 wpabuf_free(ies);
2332 struct wpabuf *ies; local
5538 struct wpabuf *ies, *buf; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
mesh_mpm.c 1062 const u8 *ies; local
1076 ies = mgmt->u.action.u.slf_prot_action.variable;
1091 WPA_GET_LE16(ies));
1092 ies += 2; /* capability */
1096 aid = WPA_GET_LE16(ies);
1098 ies += 2; /* aid */
1102 /* check for mesh peering, mesh id and mesh config IEs */
1103 if (ieee802_11_parse_elems(ies, ie_len, &elems, 0) == ParseFailed) {
1104 wpa_printf(MSG_DEBUG, "MPM: Failed to parse PLINK IEs");
1178 ies, ie_len)
    [all...]
rrm.c 636 static int wpas_get_op_chan_phy(int freq, const u8 *ies, size_t ies_len,
645 ie = get_ie(ies, ies_len, WLAN_EID_HT_OPERATION);
659 ie = get_ie(ies, ies_len, WLAN_EID_VHT_OPERATION);
709 u8 *ies = (u8 *) (bss + 1); local
750 * IE. So even when required to report all IEs, add elements one after
754 while (ies_len > 2 && 2U + ies[1] <= ies_len && rem_len > 0) {
756 (eids && bitfield_is_set(eids, ies[0]))) {
757 u8 eid = ies[0], elen = ies[1];
771 *pos++ = ies[0]
    [all...]
p2p_supplicant.c 265 const u8 *ies; local
272 ies = (const u8 *) (bss + 1);
279 ies = ies + ies_len;
286 ies, ies_len) > 0)
357 struct wpabuf *wps_ie, *ies; local
433 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
434 if (ies == NULL) {
438 wpabuf_put_buf(ies, wps_ie);
442 p2p_scan_ie(wpa_s->global->p2p, ies, dev_id, bands)
4959 struct wpabuf *wps_ie, *ies; local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java 371 ScanResult.InformationElement[] ies = local
375 capabilities.from(ies, result.capability);
379 networkDetail = new NetworkDetail(bssid, ies, null, result.frequency);
386 result.signalMbm / 100, result.frequency, result.tsf, ies, null);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
InformationElementUtilTest.java 260 InformationElement[] ies = new InformationElement[] { ie }; local
267 capabilities.from(ies, beaconCap);
286 InformationElement[] ies = new InformationElement[] { ie }; local
293 capabilities.from(ies, beaconCap);
315 InformationElement[] ies = new InformationElement[] { ie }; local
321 capabilities.from(ies, beaconCap);
339 InformationElement[] ies = new InformationElement[] { ie }; local
345 capabilities.from(ies, beaconCap);
376 InformationElement[] ies = new InformationElement[] { ieWpa, ieRsn }; local
383 capabilities.from(ies, beaconCap)
408 InformationElement[] ies = new InformationElement[] { ieWpa, ieRsn }; local
441 InformationElement[] ies = new InformationElement[] { ieWpa, ieWps }; local
470 InformationElement[] ies = new InformationElement[] { ie }; local
499 InformationElement[] ies = new InformationElement[] { ie }; local
527 InformationElement[] ies = new InformationElement[] { ie }; local
556 InformationElement[] ies = new InformationElement[] { ie }; local
    [all...]
  /hardware/interfaces/wifi/1.1/default/
hidl_struct_util.cpp 464 << ", Curr IE len: " << curr_ie_len << ", IEs End: " << (void *)ies_end;
479 << ", IEs End: " << (void *)ies_end;
505 std::vector<WifiInformationElement> ies; local
509 &ies)) {
512 hidl_scan_result->informationElements = std::move(ies);
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 316 const u8 *ies, size_t ies_len,
365 sm->ft_pending_req_ies = wpabuf_alloc_copy(ies, ies_len);
523 const u8 *ies, size_t ies_len)
531 ies, ies_len);
546 if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) ==
548 wpa_printf(MSG_DEBUG, "FT: Failed to parse request IEs");
908 const u8 *ies, size_t ies_len,
928 wpa_hexdump(MSG_DEBUG, "FT: Received authentication frame IEs",
929 ies, ies_len);
931 if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0)
1254 const u8 *ies; local
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 20 } ies[MAX_NOF_MB_IES_SUPPORTED]; member in struct:mb_ies_info
132 int ieee802_11_ie_count(const u8 *ies, size_t ies_len);
133 struct wpabuf * ieee802_11_vendor_ie_concat(const u8 *ies, size_t ies_len,
176 const u8 * get_ie(const u8 *ies, size_t len, u8 eid);
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211_event.c 175 event.auth.ies = mgmt->u.auth.variable;
1052 data.ft_ies.ies = nla_data(tb[NL80211_ATTR_IE]);
1285 u8 *ies = NULL; local
    [all...]
driver.h 277 * If the driver does not support reporting all IEs, the IE data structure is
278 * constructed of the IEs that are available. This field will also need to
280 * report all IEs to make it easier to support future additions.
282 * This structure data is followed by ie_len octets of IEs from Probe Response
283 * frame (or if the driver does not indicate source of IEs, these may also be
284 * from Beacon frame). After the first set of IEs, another set of IEs may follow
821 * for fast transition, this parameter is set to include the IEs that
823 * update_ft_ies() handler is called to update the IEs for further
826 * The driver should use these IEs only if the target AP is advertisin
1297 const u8 *ies; member in struct:wpa_driver_mesh_join_params
4643 const u8 *ies; member in struct:wpa_event_data::ft_ies
4669 const u8 *ies; member in struct:wpa_event_data::auth_info
5036 const u8 *ies; member in struct:wpa_event_data::mesh_peer
    [all...]
  /external/iw/
scan.c 352 IES,
360 unsigned char *ies = NULL, *meshid = NULL, *tmpies; local
380 } else if (strcmp(argv[i], "ies") == 0) {
381 parse = IES;
423 case IES:
424 ies = parse_hex(argv[i], &ies_len);
425 if (!ies)
446 if (ies || meshid) {
450 if (ies) {
451 memcpy(tmpies, ies, ies_len)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 1106 u8 *ies = NULL, *nies; local
1114 "%s[dbus]: ies must be an array of arrays of bytes",
1118 "Wrong IEs value type. Array of arrays of bytes required");
1127 "%s[dbus]: ies must be an array of arrays of bytes",
1130 message, "Wrong IEs value type. Array required");
1143 nies = os_realloc(ies, ies_len + len);
1145 os_free(ies);
1149 ies = nies;
1150 os_memcpy(ies + ies_len, val, len);
1156 params->extra_ies = ies
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
penwin.h 1555 WORD ies; member in struct:tagCTLINITIEDIT
    [all...]
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.50/
bcprov-jdk15on-1.50.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.56/
bcprov-jdk15on-1.56.jar 

Completed in 378 milliseconds