/external/wpa_supplicant_8/src/wps/ |
D | wps.h | 912 int wps_validate_m1(const struct wpabuf *tlvs); 913 int wps_validate_m2(const struct wpabuf *tlvs); 914 int wps_validate_m2d(const struct wpabuf *tlvs); 915 int wps_validate_m3(const struct wpabuf *tlvs); 916 int wps_validate_m4(const struct wpabuf *tlvs); 917 int wps_validate_m4_encr(const struct wpabuf *tlvs, int wps2); 918 int wps_validate_m5(const struct wpabuf *tlvs); 919 int wps_validate_m5_encr(const struct wpabuf *tlvs, int wps2); 920 int wps_validate_m6(const struct wpabuf *tlvs); 921 int wps_validate_m6_encr(const struct wpabuf *tlvs, int wps2); [all …]
|
D | wps_validate.c | 1285 int wps_validate_m1(const struct wpabuf *tlvs) in wps_validate_m1() argument 1290 if (tlvs == NULL) { in wps_validate_m1() 1294 if (wps_parse_msg(tlvs, &attr) < 0) { in wps_validate_m1() 1341 int wps_validate_m2(const struct wpabuf *tlvs) in wps_validate_m2() argument 1346 if (tlvs == NULL) { in wps_validate_m2() 1350 if (wps_parse_msg(tlvs, &attr) < 0) { in wps_validate_m2() 1396 int wps_validate_m2d(const struct wpabuf *tlvs) in wps_validate_m2d() argument 1401 if (tlvs == NULL) { in wps_validate_m2d() 1405 if (wps_parse_msg(tlvs, &attr) < 0) { in wps_validate_m2d() 1448 int wps_validate_m3(const struct wpabuf *tlvs) in wps_validate_m3() argument [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | p2p_supplicant_sd.c | 690 u16 update_indic, const u8 *tlvs, size_t tlvs_len) in wpas_sd_request() argument 693 const u8 *pos = tlvs; in wpas_sd_request() 694 const u8 *end = tlvs + tlvs_len; in wpas_sd_request() 703 tlvs, tlvs_len); in wpas_sd_request() 707 wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len); in wpas_sd_request() 717 update_indic, tlvs, tlvs_len); in wpas_sd_request() 806 update_indic, tlvs, tlvs_len); in wpas_sd_request() 889 const u8 *tlvs, size_t tlvs_len) in wpas_sd_response() argument 892 const u8 *pos = tlvs; in wpas_sd_response() 893 const u8 *end = tlvs + tlvs_len; in wpas_sd_response() [all …]
|
D | notify.c | 681 u16 update_indic, const u8 *tlvs, in wpas_notify_p2p_sd_request() argument 685 update_indic, tlvs, tlvs_len); in wpas_notify_p2p_sd_request() 691 const u8 *tlvs, size_t tlvs_len) in wpas_notify_p2p_sd_response() argument 694 tlvs, tlvs_len); in wpas_notify_p2p_sd_response() 697 tlvs, tlvs_len); in wpas_notify_p2p_sd_response()
|
D | notify.h | 109 u16 update_indic, const u8 *tlvs, 113 const u8 *tlvs, size_t tlvs_len);
|
D | p2p_supplicant.h | 84 const struct wpabuf *tlvs); 113 u16 update_indic, const u8 *tlvs, size_t tlvs_len); 115 const u8 *tlvs, size_t tlvs_len);
|
D | ctrl_iface.c | 5464 struct wpabuf *tlvs; in p2p_ctrl_serv_disc_req() local 5532 tlvs = wpabuf_alloc(len); in p2p_ctrl_serv_disc_req() 5533 if (tlvs == NULL) in p2p_ctrl_serv_disc_req() 5535 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) { in p2p_ctrl_serv_disc_req() 5536 wpabuf_free(tlvs); in p2p_ctrl_serv_disc_req() 5540 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs); in p2p_ctrl_serv_disc_req() 5541 wpabuf_free(tlvs); in p2p_ctrl_serv_disc_req()
|
/external/wpa_supplicant_8/src/eap_common/ |
D | eap_common.c | 209 int erp_parse_tlvs(const u8 *pos, const u8 *end, struct erp_tlvs *tlvs, in erp_parse_tlvs() argument 212 os_memset(tlvs, 0, sizeof(*tlvs)); in erp_parse_tlvs() 247 if (tlvs->keyname) { in erp_parse_tlvs() 252 tlvs->keyname = pos; in erp_parse_tlvs() 253 tlvs->keyname_len = tlv_len; in erp_parse_tlvs() 257 tlvs->domain = pos; in erp_parse_tlvs() 258 tlvs->domain_len = tlv_len; in erp_parse_tlvs()
|
D | eap_common.h | 30 int erp_parse_tlvs(const u8 *pos, const u8 *end, struct erp_tlvs *tlvs,
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_sd.c | 152 wpabuf_free(q->tlvs); in p2p_free_sd_query() 172 struct wpabuf *tlvs) in p2p_build_sd_query() argument 177 buf = gas_anqp_build_initial_req(0, 100 + wpabuf_len(tlvs)); in p2p_build_sd_query() 185 wpabuf_put_buf(buf, tlvs); in p2p_build_sd_query() 215 const struct wpabuf *tlvs) in p2p_build_sd_response() argument 222 100 + (tlvs ? wpabuf_len(tlvs) : 0)); in p2p_build_sd_response() 226 if (tlvs) { in p2p_build_sd_response() 232 wpabuf_put_buf(buf, tlvs); in p2p_build_sd_response() 303 req = p2p_build_sd_query(p2p->srv_update_indic, query->tlvs); in p2p_start_sd() 871 const struct wpabuf *tlvs) in p2p_sd_request() argument [all …]
|
D | p2p.h | 820 u16 update_indic, const u8 *tlvs, size_t tlvs_len); 836 const u8 *tlvs, size_t tlvs_len); 1381 const struct wpabuf *tlvs); 1385 const struct wpabuf *tlvs);
|
D | p2p_i.h | 158 struct wpabuf *tlvs; member
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
D | dbus_new.h | 214 u16 update_indic, const u8 *tlvs, 218 const u8 *tlvs, size_t tlvs_len); 461 const u8 *tlvs, size_t tlvs_len) in wpas_dbus_signal_p2p_sd_request() argument 468 const u8 *tlvs, size_t tlvs_len) in wpas_dbus_signal_p2p_sd_response() argument
|
D | dbus_new.c | 1615 u16 update_indic, const u8 *tlvs, in wpas_dbus_signal_p2p_sd_request() argument 1660 (const char *) tlvs, in wpas_dbus_signal_p2p_sd_request() 1684 const u8 *tlvs, size_t tlvs_len) in wpas_dbus_signal_p2p_sd_response() argument 1725 (const char *) tlvs, in wpas_dbus_signal_p2p_sd_response()
|
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/ |
D | hidl.h | 89 const u8 *tlvs, size_t tlvs_len); 204 const u8 *tlvs, size_t tlvs_len) in wpas_hidl_notify_p2p_sd_response() argument
|
D | hidl.cpp | 576 const u8 *tlvs, size_t tlvs_len) in wpas_hidl_notify_p2p_sd_response() argument 578 if (!wpa_s || !sa || !tlvs) in wpas_hidl_notify_p2p_sd_response() 591 wpa_s, sa, update_indic, tlvs, tlvs_len); in wpas_hidl_notify_p2p_sd_response()
|
D | hidl_manager.cpp | 1306 const u8 *tlvs, size_t tlvs_len) in notifyP2pSdResponse() argument 1308 if (!wpa_s || !sa || !tlvs) in notifyP2pSdResponse() 1320 std::vector<uint8_t>{tlvs, tlvs + tlvs_len})); in notifyP2pSdResponse()
|
D | hidl_manager.h | 117 const u8 *tlvs, size_t tlvs_len);
|
/external/wpa_supplicant_8/src/eap_server/ |
D | eap_server.c | 788 const u8 *pos, *end, *start, *tlvs, *hdr; in SM_STATE() local 825 tlvs = pos; in SM_STATE() 833 if (erp_parse_tlvs(tlvs, end, &parse, 1) < 0) in SM_STATE() 965 tlvs, end - tlvs); in SM_STATE() 966 if (erp_parse_tlvs(tlvs, end, &parse, 0) < 0) in SM_STATE()
|