HomeSort by: relevance | last modified time | path
    Searched refs:p2p_ie (Results 1 - 13 of 13) sorted by relevancy

  /src/external/bsd/wpa/dist/src/ap/
p2p_hostapd.c 26 if (sta->p2p_ie == NULL)
29 return p2p_ie_text(sta->p2p_ie, buf, buf + buflen);
sta_info.h 229 struct wpabuf *p2p_ie; /* P2P IE from (Re)Association Request */ member in struct:sta_info
sta_info.c 88 if (sta->p2p_ie == NULL)
91 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
405 wpabuf_free(sta->p2p_ie);
1513 if (sta->p2p_ie != NULL &&
1514 p2p_parse_dev_addr_in_p2p_ie(sta->p2p_ie, addr) == 0)
drv_callbacks.c 417 wpabuf_free(sta->p2p_ie);
418 sta->p2p_ie = ieee802_11_vendor_ie_concat(req_ies, req_ies_len,
420 if (sta->p2p_ie)
421 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
ieee802_11.c 4037 wpabuf_free(sta->p2p_ie);
4038 sta->p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
4040 if (sta->p2p_ie)
4041 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
4043 wpabuf_free(sta->p2p_ie);
4044 sta->p2p_ie = NULL;
4817 sta->vht_opmode, sta->p2p_ie ? 1 : 0,
5089 if (sta && sta->p2p_ie && hapd->p2p_group) {
ieee802_1x.c 1063 sta->wps_ie, sta->p2p_ie, sta,
hostapd.c 4012 if (sta->p2p_ie == NULL && !sta->no_p2p_set) {
  /src/external/bsd/wpa/dist/src/p2p/
p2p_group.c 25 struct wpabuf *p2p_ie; member in struct:p2p_group_member
78 wpabuf_free(m->p2p_ie);
513 * @p2p_ie: P2P IE from (Re)Association Request
523 struct wpabuf *p2p_ie,
531 if (p2p_ie == NULL)
535 if (p2p_parse_p2p_ie(p2p_ie, &msg) ||
616 m->p2p_ie = ieee802_11_vendor_ie_concat(ie, len, P2P_IE_VENDOR_TYPE);
617 if (m->p2p_ie) {
618 m->client_info = p2p_build_client_info(addr, m->p2p_ie,
633 MAC2STR(addr), m->p2p_ie ? 1 : 0, m->wfd_ie ? 1 : 0
    [all...]
p2p.h 1875 * @p2p_ie: P2P IE
1883 int p2p_ie_text(struct wpabuf *p2p_ie, char *buf, char *end);
1901 * @p2p_ie: P2P IE
1905 int p2p_parse_dev_addr_in_p2p_ie(struct wpabuf *p2p_ie, u8 *dev_addr);
1923 * @p2p_ie: Reassembled P2P IE data from scan results or %NULL if none
1927 size_t len, int p2p_group, struct wpabuf *p2p_ie);
1956 * @p2p_ie: P2P IE(s) contents
1959 u8 p2p_get_group_capab(const struct wpabuf *p2p_ie);
1963 * @p2p_ie: P2P IE(s) contents
1966 int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie);
    [all...]
p2p_parse.c 867 int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie)
872 if (p2p_parse_p2p_ie(p2p_ie, &msg))
882 u8 p2p_get_group_capab(const struct wpabuf *p2p_ie)
887 if (p2p_parse_p2p_ie(p2p_ie, &msg))
897 const u8 * p2p_get_go_dev_addr(const struct wpabuf *p2p_ie)
902 if (p2p_parse_p2p_ie(p2p_ie, &msg))
p2p.c 2594 u8 *buf, size_t len, struct wpabuf *p2p_ie)
2603 if (p2p_ie == NULL)
2607 if (p2p_parse_p2p_ie(p2p_ie, &msg) < 0)
2655 size_t len, int p2p_group, struct wpabuf *p2p_ie)
2665 return p2p_assoc_req_ie_wlan_ap(p2p, bssid, buf, len, p2p_ie);
2719 struct wpabuf *p2p_ie; local
2722 p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len, P2P_IE_VENDOR_TYPE);
2723 if (p2p_ie == NULL)
2726 ret = p2p_attr_text(p2p_ie, buf, end);
2727 wpabuf_free(p2p_ie);
2906 struct wpabuf *p2p_ie; local
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
events.c 1500 struct wpabuf *p2p_ie; local
1510 p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
1511 if (!p2p_ie) {
1518 if (p2p_parse_dev_addr_in_p2p_ie(p2p_ie, dev_addr) < 0 ||
1523 wpabuf_free(p2p_ie);
1526 wpabuf_free(p2p_ie);
p2p_supplicant.c 7574 struct wpabuf *p2p_ie; local
7590 p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
7592 p2p_group, p2p_ie);
7593 wpabuf_free(p2p_ie);

Completed in 90 milliseconds