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

  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 339 struct wpabuf *ies; local
345 ies = p2p_build_probe_resp_ies(p2p);
346 if (ies == NULL)
353 ies) < 0) {
358 wpabuf_free(ies);
p2p.c 263 struct wpabuf *ies; local
285 ies = p2p_build_probe_resp_ies(p2p);
286 if (ies == NULL)
290 ies) < 0) {
295 wpabuf_free(ies);
302 struct wpabuf *ies; local
332 ies = p2p_build_probe_resp_ies(p2p);
333 if (ies == NULL)
336 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0) {
340 wpabuf_free(ies);
1997 struct wpabuf *ies; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 489 const u8 *ies, size_t ies_len)
497 ies, ies_len);
512 if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) ==
514 wpa_printf(MSG_DEBUG, "FT: Failed to parse request IEs");
781 const u8 *ies, size_t ies_len,
801 wpa_hexdump(MSG_DEBUG, "FT: Received authentication frame IEs",
802 ies, ies_len);
804 if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) {
805 wpa_printf(MSG_DEBUG, "FT: Failed to parse FT IEs");
934 u16 auth_transaction, const u8 *ies, size_t ies_len
1117 const u8 *ies; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
mlme.c 328 u8 *pos, *ies, *buf; local
393 ies = pos = buf + blen;
469 wpa_s->mlme.assocreq_ies_len = (buf + blen) - ies;
472 os_memcpy(wpa_s->mlme.assocreq_ies, ies,
894 data.ft_ies.ies = mgmt->u.auth.variable;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver.h 100 * If the driver does not support reporting all IEs, the IE data structure is
101 * constructed of the IEs that are available. This field will also need to
103 * report all IEs to make it easier to support future additions.
115 /* followed by ie_len octets of IEs */
237 * for fast transition, this parameter is set to include the IEs that
239 * update_ft_ies() handler is called to update the IEs for further
242 * The driver should use these IEs only if the target AP is advertising
245 * In ap_scan=2 mode, the driver can use these IEs when moving to a new
246 * AP after the initial association. These IEs can only be used if the
250 * The driver is responsible for reporting the FT IEs received from th
1304 const u8 *ies; member in struct:wpa_event_data::ft_ies
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_test.c 526 /* data: optional [ ' ' | STA-addr | ' ' | IEs(hex) ] */
549 wpa_hexdump(MSG_MSGDUMP, "test_driver: scan IEs", ie, ielen);
566 /* reply: SCANRESP BSSID SSID IEs */
605 /* data: STA-addr SSID(hex) IEs(hex) */
2926 struct wpabuf *wps_ie, *ies; local
    [all...]
driver.h 152 * If the driver does not support reporting all IEs, the IE data structure is
153 * constructed of the IEs that are available. This field will also need to
155 * report all IEs to make it easier to support future additions.
171 * Followed by ie_len octets of IEs from Probe Response frame (or if
172 * the driver does not indicate source of IEs, these may also be from
173 * Beacon frame). After the first set of IEs, another set of IEs may
446 * for fast transition, this parameter is set to include the IEs that
448 * update_ft_ies() handler is called to update the IEs for further
451 * The driver should use these IEs only if the target AP is advertisin
3293 const u8 *ies; member in struct:wpa_event_data::ft_ies
3319 const u8 *ies; member in struct:wpa_event_data::auth_info
    [all...]
driver_nl80211.c 1054 event.auth.ies = mgmt->u.auth.variable;
1947 u8 *ies = NULL; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 1034 u8 *ies = NULL, *nies; local
1041 wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
1044 message, "Wrong IEs value type. Array of arrays of "
1054 wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
1057 message, "Wrong IEs value type. Array required");
1071 nies = os_realloc(ies, ies_len + len);
1076 os_free(ies);
1081 ies = nies;
1082 os_memcpy(ies + ies_len, val, len);
1088 params->extra_ies = ies;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
p2p_supplicant.c 134 struct wpabuf *wps_ie, *ies; local
168 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
169 if (ies == NULL) {
173 wpabuf_put_buf(ies, wps_ie);
176 p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
179 params.extra_ies = wpabuf_head(ies);
180 params.extra_ies_len = wpabuf_len(ies);
201 wpabuf_free(ies);
428 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
430 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
3321 struct wpabuf *wps_ie, *ies; local
    [all...]

Completed in 119 milliseconds