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

  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 309 struct wpabuf *ies; local
313 ies = p2p_build_probe_resp_ies(p2p);
314 if (ies == NULL)
321 ies) < 0) {
324 wpabuf_free(ies);
p2p.c 269 struct wpabuf *ies; local
300 ies = p2p_build_probe_resp_ies(p2p);
301 if (ies == NULL)
305 ies) < 0) {
309 wpabuf_free(ies);
316 struct wpabuf *ies; local
340 ies = p2p_build_probe_resp_ies(p2p);
341 if (ies == NULL)
344 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0) {
347 wpabuf_free(ies);
2010 struct wpabuf *ies; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 490 const u8 *ies, size_t ies_len)
498 ies, ies_len);
513 if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) ==
515 wpa_printf(MSG_DEBUG, "FT: Failed to parse request IEs");
782 const u8 *ies, size_t ies_len,
802 wpa_hexdump(MSG_DEBUG, "FT: Received authentication frame IEs",
803 ies, ies_len);
805 if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) {
806 wpa_printf(MSG_DEBUG, "FT: Failed to parse FT IEs");
935 u16 auth_transaction, const u8 *ies, size_t ies_len
1118 const u8 *ies; local
    [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) */
2914 struct wpabuf *wps_ie, *ies; local
    [all...]
driver.h 188 * If the driver does not support reporting all IEs, the IE data structure is
189 * constructed of the IEs that are available. This field will also need to
191 * report all IEs to make it easier to support future additions.
207 * Followed by ie_len octets of IEs from Probe Response frame (or if
208 * the driver does not indicate source of IEs, these may also be from
209 * Beacon frame). After the first set of IEs, another set of IEs may
487 * for fast transition, this parameter is set to include the IEs that
489 * update_ft_ies() handler is called to update the IEs for further
492 * The driver should use these IEs only if the target AP is advertisin
3549 const u8 *ies; member in struct:wpa_event_data::ft_ies
3575 const u8 *ies; member in struct:wpa_event_data::auth_info
    [all...]
driver_nl80211.c 1271 event.auth.ies = mgmt->u.auth.variable;
2284 u8 *ies = NULL; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 1071 u8 *ies = NULL, *nies; local
1078 wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
1081 message, "Wrong IEs value type. Array of arrays of "
1091 wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
1094 message, "Wrong IEs value type. Array required");
1108 nies = os_realloc(ies, ies_len + len);
1113 os_free(ies);
1118 ies = nies;
1119 os_memcpy(ies + ies_len, val, len);
1125 params->extra_ies = ies;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
p2p_supplicant.c 221 struct wpabuf *wps_ie, *ies; local
256 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
257 if (ies == NULL) {
261 wpabuf_put_buf(ies, wps_ie);
264 p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
267 params.extra_ies = wpabuf_head(ies);
268 params.extra_ies_len = wpabuf_len(ies);
284 wpabuf_free(ies);
525 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
527 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
3812 struct wpabuf *wps_ie, *ies; local
    [all...]

Completed in 95 milliseconds