/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
H A D | p2p_group.c | 41 struct wpabuf *noa; member 121 wpabuf_free(group->noa); in p2p_group_deinit() 164 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) in p2p_group_add_noa() argument 166 if (noa == NULL) in p2p_group_add_noa() 170 wpabuf_put_le16(ie, wpabuf_len(noa)); in p2p_group_add_noa() 171 wpabuf_put_buf(ie, noa); in p2p_group_add_noa() 240 p2p_group_add_noa(ie, group->noa); in p2p_group_build_beacon_ie() 452 p2p_group_add_noa(p2p_subelems, group->noa); in p2p_group_build_probe_resp_ie() 811 int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, in p2p_group_notif_noa() argument 814 if (noa in p2p_group_notif_noa() 962 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) p2p_group_presence_req() argument [all...] |
H A D | p2p_i.h | 585 const u8 *noa; member 728 const u8 *noa, size_t noa_len);
|
H A D | p2p.c | 4445 static struct wpabuf * p2p_build_presence_resp(u8 status, const u8 *noa, in p2p_build_presence_resp() argument 4458 if (noa) { in p2p_build_presence_resp() 4461 wpabuf_put_data(resp, noa, noa_len); in p2p_build_presence_resp() 4480 u8 noa[50]; in p2p_process_presence_req() local 4505 if (msg.noa == NULL) { in p2p_process_presence_req() 4511 status = p2p_group_presence_req(group, sa, msg.noa, msg.noa_len); in p2p_process_presence_req() 4515 noa_len = p2p->cfg->get_noa(p2p->cfg->cb_ctx, da, noa, in p2p_process_presence_req() 4516 sizeof(noa)); in p2p_process_presence_req() 4519 resp = p2p_build_presence_resp(status, noa_len > 0 ? noa : NULL, in p2p_process_presence_req() 4548 if (msg.status == NULL || msg.noa in p2p_process_presence_resp() [all...] |
H A D | p2p.h | 999 * @noa: Returned NoA value 1003 const u8 *noa, size_t noa_len); 1818 * @noa: Notice of Absence attribute payload, %NULL if none 1819 * @noa_len: Length of noa buffer in octets 1826 int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa,
|
H A D | p2p_parse.c | 256 msg->noa = data; in p2p_parse_attribute()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
H A D | p2p_group.c | 41 struct wpabuf *noa; member 126 wpabuf_free(group->noa); in p2p_group_deinit() 169 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) in p2p_group_add_noa() argument 171 if (noa == NULL) in p2p_group_add_noa() 175 wpabuf_put_le16(ie, wpabuf_len(noa)); in p2p_group_add_noa() 176 wpabuf_put_buf(ie, noa); in p2p_group_add_noa() 256 p2p_group_add_noa(ie, group->noa); in p2p_group_build_beacon_ie() 472 p2p_group_add_noa(p2p_subelems, group->noa); in p2p_group_build_probe_resp_ie() 855 int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, in p2p_group_notif_noa() argument 858 if (noa in p2p_group_notif_noa() 1006 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) p2p_group_presence_req() argument [all...] |
H A D | p2p.c | 4633 static struct wpabuf * p2p_build_presence_resp(u8 status, const u8 *noa, argument 4646 if (noa) { 4649 wpabuf_put_data(resp, noa, noa_len); 4668 u8 noa[50]; local 4693 if (msg.noa == NULL) { 4699 status = p2p_group_presence_req(group, sa, msg.noa, msg.noa_len); 4703 noa_len = p2p->cfg->get_noa(p2p->cfg->cb_ctx, da, noa, 4704 sizeof(noa)); 4707 resp = p2p_build_presence_resp(status, noa_len > 0 ? noa : NULL, 4736 if (msg.status == NULL || msg.noa [all...] |
H A D | p2p.h | 1021 * @noa: Returned NoA value 1025 const u8 *noa, size_t noa_len); 1846 * @noa: Notice of Absence attribute payload, %NULL if none 1847 * @noa_len: Length of noa buffer in octets 1854 int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa,
|
H A D | p2p_i.h | 641 const u8 *noa; member 786 const u8 *noa, size_t noa_len);
|
H A D | p2p_parse.c | 255 msg->noa = data; in p2p_parse_attribute()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | p2p_supplicant.c | 3858 const u8 *noa, size_t noa_len) in wpas_presence_resp() 3873 wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len); in wpas_presence_resp() 3875 " status=%u noa=%s", MAC2STR(src), status, hex); in wpas_presence_resp() 3857 wpas_presence_resp(void *ctx, const u8 *src, u8 status, const u8 *noa, size_t noa_len) wpas_presence_resp() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | p2p_supplicant.c | 4857 const u8 *noa, size_t noa_len) 4872 wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len); 4874 " status=%u noa=%s", MAC2STR(src), status, hex); 4856 wpas_presence_resp(void *ctx, const u8 *src, u8 status, const u8 *noa, size_t noa_len) global() argument
|