Lines Matching defs:ies
295 const u8 *ies;
302 ies = (const u8 *) (bss + 1);
309 ies = ies + ies_len;
316 ies, ies_len) > 0)
428 struct wpabuf *wps_ie, *ies;
512 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
513 if (ies == NULL) {
517 wpabuf_put_buf(ies, wps_ie);
521 p2p_scan_ie(wpa_s->global->p2p, ies, dev_id, bands);
524 n = os_malloc(wpabuf_len(ies));
526 wpabuf_free(ies);
529 os_memcpy(n, wpabuf_head(ies), wpabuf_len(ies));
531 params->extra_ies_len = wpabuf_len(ies);
532 wpabuf_free(ies);
1150 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
1152 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
5571 struct wpabuf *wps_ie, *ies;
5619 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
5620 if (ies == NULL) {
5625 wpabuf_put_buf(ies, wps_ie);
5629 p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
5632 params.extra_ies = wpabuf_head(ies);
5633 params.extra_ies_len = wpabuf_len(ies);
5655 ies);
7412 int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
7415 return p2p_scan_result_text(ies, ies_len, buf, end);
7640 void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
7650 p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);