HomeSort by relevance Sort by last modified time
    Searched refs:wps_ie (Results 1 - 21 of 21) sorted by null

  /external/wpa_supplicant_8/src/wps/
wps.h 906 int wps_validate_beacon(const struct wpabuf *wps_ie);
907 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe,
909 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr);
910 int wps_validate_assoc_req(const struct wpabuf *wps_ie);
911 int wps_validate_assoc_resp(const struct wpabuf *wps_ie);
931 static inline int wps_validate_beacon(const struct wpabuf *wps_ie){
935 static inline int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie,
941 static inline int wps_validate_probe_req(const struct wpabuf *wps_ie,
947 static inline int wps_validate_assoc_req(const struct wpabuf *wps_ie)
952 static inline int wps_validate_assoc_resp(const struct wpabuf *wps_ie)
    [all...]
wps_validate.c 1083 int wps_validate_beacon(const struct wpabuf *wps_ie)
1088 if (wps_ie == NULL) {
1092 if (wps_parse_msg(wps_ie, &attr) < 0) {
1121 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe,
1127 if (wps_ie == NULL) {
1132 if (wps_parse_msg(wps_ie, &attr) < 0) {
1180 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr)
1185 if (wps_ie == NULL) {
1190 if (wps_parse_msg(wps_ie, &attr) < 0) {
1227 int wps_validate_assoc_req(const struct wpabuf *wps_ie)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.c 1635 struct wpabuf *wps_ie; local
1710 struct wpabuf *wps_ie = NULL; local
1767 struct wpabuf *wps_ie; local
1871 struct wpabuf *wps_ie; local
    [all...]
sme.c 338 struct wpabuf *wps_ie; local
339 wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
340 if (wps_ie && wpabuf_len(wps_ie) <=
342 wpa_s->sme.assoc_req_ie_len = wpabuf_len(wps_ie);
343 os_memcpy(wpa_s->sme.assoc_req_ie, wpabuf_head(wps_ie),
347 wpabuf_free(wps_ie);
    [all...]
scan.c 457 struct wpabuf *wps_ie; local
458 wps_ie = wps_build_probe_req_ie(wps == 2 ? DEV_PW_PUSHBUTTON :
463 if (wps_ie) {
464 if (wpabuf_resize(&extra_ie, wpabuf_len(wps_ie)) == 0)
465 wpabuf_put_buf(extra_ie, wps_ie);
466 wpabuf_free(wps_ie);
    [all...]
wpa_supplicant.c 2213 struct wpabuf *wps_ie; local
3324 struct wpabuf *wps_ie; local
    [all...]
p2p_supplicant.c 349 struct wpabuf *wps_ie, *ies; local
378 wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
381 if (wps_ie == NULL)
425 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
427 wpabuf_free(wps_ie);
430 wpabuf_put_buf(ies, wps_ie);
431 wpabuf_free(wps_ie);
4937 struct wpabuf *wps_ie, *ies; local
    [all...]
ctrl_iface.c 2460 struct wpabuf *wps_ie; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_hostap.c 49 u8 *wps_ie; member in struct:hostap_driver_data
721 if (drv->wps_ie) {
723 drv->wps_ie, drv->wps_ie_len);
767 os_free(drv->wps_ie);
768 drv->wps_ie = NULL;
771 drv->wps_ie = os_malloc(wpabuf_len(proberesp));
772 if (drv->wps_ie == NULL)
774 os_memcpy(drv->wps_ie, wpabuf_head(proberesp),
1019 os_free(drv->wps_ie);
driver_atheros.c 1139 ie.wps_ie, IEEE80211_MAX_OPT_IE);
1158 if (ie.wps_ie &&
1159 (ie.wps_ie[1] > 0 && (ie.wps_ie[0] == WLAN_EID_VENDOR_SPECIFIC))) {
1160 iebuf = ie.wps_ie;
1161 ielen = ie.wps_ie[1];
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 36 const u8 *wps_ie; member in struct:ieee802_11_elems
ieee802_11_common.c 84 elems->wps_ie = pos;
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 1391 struct wpabuf *wps_ie; local
    [all...]
sta_info.h 170 struct wpabuf *wps_ie; /* WPS IE from (Re)Association Request */ member in struct:sta_info
ieee802_11.c     [all...]
drv_callbacks.c 74 if (elems.wps_ie) {
75 ie = elems.wps_ie - 2;
    [all...]
beacon.c 739 if (hapd->p2p && hapd->p2p_group && elems.wps_ie) {
    [all...]
sta_info.c 309 wpabuf_free(sta->wps_ie);
    [all...]
ieee802_1x.c 859 sta->wps_ie, sta->p2p_ie, sta,
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c 416 const u8 *wpa_ie, *rsn_ie, *wps_ie; local
423 wps_ie = wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE);
441 (wps_ie &&
443 (const char *) wps_ie,
444 wps_ie[1] + 2)) ||
    [all...]
dbus_new_handlers.c 4025 struct wpabuf *wps_ie; local
    [all...]

Completed in 350 milliseconds