Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:ies

265 		const u8 *ies;
272 ies = (const u8 *) (bss + 1);
279 ies = ies + ies_len;
286 ies, ies_len) > 0)
357 struct wpabuf *wps_ie, *ies;
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);
445 n = os_malloc(wpabuf_len(ies));
447 wpabuf_free(ies);
450 os_memcpy(n, wpabuf_head(ies), wpabuf_len(ies));
452 params->extra_ies_len = wpabuf_len(ies);
453 wpabuf_free(ies);
1063 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
1065 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
4959 struct wpabuf *wps_ie, *ies;
5005 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
5006 if (ies == NULL) {
5011 wpabuf_put_buf(ies, wps_ie);
5015 p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
5018 params.extra_ies = wpabuf_head(ies);
5019 params.extra_ies_len = wpabuf_len(ies);
5039 wpabuf_free(ies);
6551 int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
6554 return p2p_scan_result_text(ies, ies_len, buf, end);
6768 void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
6778 p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);