/external/wpa_supplicant_8/src/ap/ |
D | p2p_hostapd.c | 26 if (sta->p2p_ie == NULL) in hostapd_p2p_get_mib_sta() 29 return p2p_ie_text(sta->p2p_ie, buf, buf + buflen); in hostapd_p2p_get_mib_sta()
|
D | sta_info.c | 90 if (sta->p2p_ie == NULL) in ap_get_sta_p2p() 93 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie); in ap_get_sta_p2p() 323 wpabuf_free(sta->p2p_ie); in ap_free_sta() 1225 if (sta->p2p_ie != NULL && in ap_sta_set_authorized() 1226 p2p_parse_dev_addr_in_p2p_ie(sta->p2p_ie, addr) == 0) in ap_sta_set_authorized()
|
D | sta_info.h | 187 struct wpabuf *p2p_ie; /* P2P IE from (Re)Association Request */ member
|
D | drv_callbacks.c | 202 wpabuf_free(sta->p2p_ie); in hostapd_notif_assoc() 203 sta->p2p_ie = ieee802_11_vendor_ie_concat(req_ies, req_ies_len, in hostapd_notif_assoc() 205 if (sta->p2p_ie) in hostapd_notif_assoc() 206 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie); in hostapd_notif_assoc()
|
D | ieee802_11.c | 2873 wpabuf_free(sta->p2p_ie); in check_assoc_ies() 2874 sta->p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len, in check_assoc_ies() 2876 if (sta->p2p_ie) in check_assoc_ies() 2877 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie); in check_assoc_ies() 2879 wpabuf_free(sta->p2p_ie); in check_assoc_ies() 2880 sta->p2p_ie = NULL; in check_assoc_ies() 3296 sta->vht_opmode, sta->p2p_ie ? 1 : 0, in add_associated_sta() 3506 if (sta && sta->p2p_ie && hapd->p2p_group) { in send_assoc_resp()
|
D | ieee802_1x.c | 899 sta->wps_ie, sta->p2p_ie, sta, in ieee802_1x_alloc_eapol_sm()
|
D | hostapd.c | 2991 if (sta->p2p_ie == NULL && !sta->no_p2p_set) { in hostapd_new_assoc_sta()
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_group.c | 25 struct wpabuf *p2p_ie; member 78 wpabuf_free(m->p2p_ie); in p2p_group_free_member() 523 struct wpabuf *p2p_ie, in p2p_build_client_info() argument 531 if (p2p_ie == NULL) in p2p_build_client_info() 535 if (p2p_parse_p2p_ie(p2p_ie, &msg) || in p2p_build_client_info() 616 m->p2p_ie = ieee802_11_vendor_ie_concat(ie, len, P2P_IE_VENDOR_TYPE); in p2p_group_notif_assoc() 617 if (m->p2p_ie) { in p2p_group_notif_assoc() 618 m->client_info = p2p_build_client_info(addr, m->p2p_ie, in p2p_group_notif_assoc() 633 MAC2STR(addr), m->p2p_ie ? 1 : 0, m->wfd_ie ? 1 : 0, in p2p_group_notif_assoc()
|
D | p2p_parse.c | 846 int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie) in p2p_get_cross_connect_disallowed() argument 851 if (p2p_parse_p2p_ie(p2p_ie, &msg)) in p2p_get_cross_connect_disallowed() 861 u8 p2p_get_group_capab(const struct wpabuf *p2p_ie) in p2p_get_group_capab() argument 866 if (p2p_parse_p2p_ie(p2p_ie, &msg)) in p2p_get_group_capab() 876 const u8 * p2p_get_go_dev_addr(const struct wpabuf *p2p_ie) in p2p_get_go_dev_addr() argument 881 if (p2p_parse_p2p_ie(p2p_ie, &msg)) in p2p_get_go_dev_addr()
|
D | p2p.h | 1868 int p2p_ie_text(struct wpabuf *p2p_ie, char *buf, char *end); 1890 int p2p_parse_dev_addr_in_p2p_ie(struct wpabuf *p2p_ie, u8 *dev_addr); 1912 size_t len, int p2p_group, struct wpabuf *p2p_ie); 1944 u8 p2p_get_group_capab(const struct wpabuf *p2p_ie); 1951 int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie); 1958 const u8 * p2p_get_go_dev_addr(const struct wpabuf *p2p_ie);
|
D | p2p.c | 2573 u8 *buf, size_t len, struct wpabuf *p2p_ie) in p2p_assoc_req_ie_wlan_ap() argument 2582 if (p2p_ie == NULL) in p2p_assoc_req_ie_wlan_ap() 2586 if (p2p_parse_p2p_ie(p2p_ie, &msg) < 0) in p2p_assoc_req_ie_wlan_ap() 2634 size_t len, int p2p_group, struct wpabuf *p2p_ie) in p2p_assoc_req_ie() argument 2644 return p2p_assoc_req_ie_wlan_ap(p2p, bssid, buf, len, p2p_ie); in p2p_assoc_req_ie() 2698 struct wpabuf *p2p_ie; in p2p_scan_result_text() local 2701 p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len, P2P_IE_VENDOR_TYPE); in p2p_scan_result_text() 2702 if (p2p_ie == NULL) in p2p_scan_result_text() 2705 ret = p2p_attr_text(p2p_ie, buf, end); in p2p_scan_result_text() 2706 wpabuf_free(p2p_ie); in p2p_scan_result_text() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | events.c | 1287 struct wpabuf *p2p_ie; in wpa_scan_res_match() local 1297 p2p_ie = wpa_bss_get_vendor_ie_multi( in wpa_scan_res_match() 1299 if (p2p_ie == NULL) { in wpa_scan_res_match() 1306 if (p2p_parse_dev_addr_in_p2p_ie(p2p_ie, dev_addr) < 0 in wpa_scan_res_match() 1312 wpabuf_free(p2p_ie); in wpa_scan_res_match() 1315 wpabuf_free(p2p_ie); in wpa_scan_res_match()
|
D | p2p_supplicant.c | 6959 struct wpabuf *p2p_ie; in wpas_p2p_assoc_req_ie() local 6975 p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE); in wpas_p2p_assoc_req_ie() 6977 p2p_group, p2p_ie); in wpas_p2p_assoc_req_ie() 6978 wpabuf_free(p2p_ie); in wpas_p2p_assoc_req_ie()
|