/external/wpa_supplicant_8/src/wps/ |
D | wps.h | 869 int wps_validate_m1(const struct wpabuf *tlvs); 870 int wps_validate_m2(const struct wpabuf *tlvs); 871 int wps_validate_m2d(const struct wpabuf *tlvs); 872 int wps_validate_m3(const struct wpabuf *tlvs); 873 int wps_validate_m4(const struct wpabuf *tlvs); 874 int wps_validate_m4_encr(const struct wpabuf *tlvs, int wps2); 875 int wps_validate_m5(const struct wpabuf *tlvs); 876 int wps_validate_m5_encr(const struct wpabuf *tlvs, int wps2); 877 int wps_validate_m6(const struct wpabuf *tlvs); 878 int wps_validate_m6_encr(const struct wpabuf *tlvs, int wps2); [all …]
|
D | wps_validate.c | 1283 int wps_validate_m1(const struct wpabuf *tlvs) in wps_validate_m1() argument 1288 if (tlvs == NULL) { in wps_validate_m1() 1292 if (wps_parse_msg(tlvs, &attr) < 0) { in wps_validate_m1() 1339 int wps_validate_m2(const struct wpabuf *tlvs) in wps_validate_m2() argument 1344 if (tlvs == NULL) { in wps_validate_m2() 1348 if (wps_parse_msg(tlvs, &attr) < 0) { in wps_validate_m2() 1394 int wps_validate_m2d(const struct wpabuf *tlvs) in wps_validate_m2d() argument 1399 if (tlvs == NULL) { in wps_validate_m2d() 1403 if (wps_parse_msg(tlvs, &attr) < 0) { in wps_validate_m2d() 1446 int wps_validate_m3(const struct wpabuf *tlvs) in wps_validate_m3() argument [all …]
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_sd.c | 106 wpabuf_free(q->tlvs); in p2p_free_sd_query() 125 struct wpabuf *tlvs) in p2p_build_sd_query() argument 130 buf = gas_anqp_build_initial_req(0, 100 + wpabuf_len(tlvs)); in p2p_build_sd_query() 139 wpabuf_put_buf(buf, tlvs); in p2p_build_sd_query() 170 const struct wpabuf *tlvs) in p2p_build_sd_response() argument 177 100 + (tlvs ? wpabuf_len(tlvs) : 0)); in p2p_build_sd_response() 181 if (tlvs) { in p2p_build_sd_response() 188 wpabuf_put_buf(buf, tlvs); in p2p_build_sd_response() 253 req = p2p_build_sd_query(p2p->srv_update_indic, query->tlvs); in p2p_start_sd() 904 const struct wpabuf *tlvs) in p2p_sd_request() argument [all …]
|
D | p2p.h | 597 u16 update_indic, const u8 *tlvs, size_t tlvs_len); 613 const u8 *tlvs, size_t tlvs_len); 978 const struct wpabuf *tlvs); 982 const struct wpabuf *tlvs);
|
D | p2p_i.h | 113 struct wpabuf *tlvs; member
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | p2p_supplicant.c | 1593 u16 update_indic, const u8 *tlvs, size_t tlvs_len) in wpas_sd_request() argument 1596 const u8 *pos = tlvs; in wpas_sd_request() 1597 const u8 *end = tlvs + tlvs_len; in wpas_sd_request() 1606 tlvs, tlvs_len); in wpas_sd_request() 1610 wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len); in wpas_sd_request() 1620 update_indic, tlvs, tlvs_len); in wpas_sd_request() 1702 update_indic, tlvs, tlvs_len); in wpas_sd_request() 1711 const u8 *tlvs, size_t tlvs_len) in wpas_sd_response() argument 1714 const u8 *pos = tlvs; in wpas_sd_response() 1715 const u8 *end = tlvs + tlvs_len; in wpas_sd_response() [all …]
|
D | p2p_supplicant.h | 86 u16 update_indic, const u8 *tlvs, size_t tlvs_len); 88 const u8 *tlvs, size_t tlvs_len); 90 const struct wpabuf *tlvs);
|
D | notify.c | 469 u16 update_indic, const u8 *tlvs, in wpas_notify_p2p_sd_request() argument 473 update_indic, tlvs, tlvs_len); in wpas_notify_p2p_sd_request() 479 const u8 *tlvs, size_t tlvs_len) in wpas_notify_p2p_sd_response() argument 482 tlvs, tlvs_len); in wpas_notify_p2p_sd_response()
|
D | notify.h | 101 u16 update_indic, const u8 *tlvs, 105 const u8 *tlvs, size_t tlvs_len);
|
D | driver_i.h | 592 const struct wpabuf *tlvs) in wpa_drv_p2p_sd_request() argument 596 return wpa_s->driver->p2p_sd_request(wpa_s->drv_priv, dst, tlvs); in wpa_drv_p2p_sd_request()
|
D | ctrl_iface.c | 3263 struct wpabuf *tlvs; in p2p_ctrl_serv_disc_req() local 3297 tlvs = wpabuf_alloc(len); in p2p_ctrl_serv_disc_req() 3298 if (tlvs == NULL) in p2p_ctrl_serv_disc_req() 3300 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) { in p2p_ctrl_serv_disc_req() 3301 wpabuf_free(tlvs); in p2p_ctrl_serv_disc_req() 3305 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs); in p2p_ctrl_serv_disc_req() 3306 wpabuf_free(tlvs); in p2p_ctrl_serv_disc_req()
|
D | events.c | 2884 data->p2p_sd_req.tlvs, 2890 data->p2p_sd_resp.tlvs,
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
D | dbus_new.h | 206 u16 update_indic, const u8 *tlvs, 210 const u8 *tlvs, size_t tlvs_len); 426 const u8 *tlvs, size_t tlvs_len) in wpas_dbus_signal_p2p_sd_request() argument 433 const u8 *tlvs, size_t tlvs_len) in wpas_dbus_signal_p2p_sd_response() argument
|
D | dbus_new.c | 1455 u16 update_indic, const u8 *tlvs, in wpas_dbus_signal_p2p_sd_request() argument 1497 (const char *) tlvs, in wpas_dbus_signal_p2p_sd_request() 1525 const u8 *tlvs, size_t tlvs_len) in wpas_dbus_signal_p2p_sd_response() argument 1562 (const char *) tlvs, in wpas_dbus_signal_p2p_sd_response()
|
/external/libnfc-nci/src/nfc/nfc/ |
D | nfc_main.c | 1184 UINT8 tlvs[12]; in NFC_UpdateRFCommParams() local 1185 UINT8 *p = tlvs; in NFC_UpdateRFCommParams() 1227 return nci_snd_parameter_update_cmd (tlvs, (UINT8) (p - tlvs)); in NFC_UpdateRFCommParams()
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver.h | 2332 const struct wpabuf *tlvs); 3626 const u8 *tlvs; member 3633 const u8 *tlvs; member
|
D | driver_test.c | 3176 u16 update_indic, const u8 *tlvs, size_t tlvs_len) in test_sd_request() argument 3184 const u8 *tlvs, size_t tlvs_len) in test_sd_response() argument
|