Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:ies

221 	struct wpabuf *wps_ie, *ies;
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;
3843 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
3844 if (ies == NULL) {
3849 wpabuf_put_buf(ies, wps_ie);
3852 p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
3855 params.extra_ies = wpabuf_head(ies);
3856 params.extra_ies_len = wpabuf_len(ies);
3872 wpabuf_free(ies);
4894 int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
4897 return p2p_scan_result_text(ies, ies_len, buf, end);
5073 void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
5080 p2p_scan_ie(wpa_s->global->p2p, ies, NULL);