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 831 int wps_validate_beacon(const struct wpabuf *wps_ie);
832 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe,
834 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr);
835 int wps_validate_assoc_req(const struct wpabuf *wps_ie);
836 int wps_validate_assoc_resp(const struct wpabuf *wps_ie);
856 static inline int wps_validate_beacon(const struct wpabuf *wps_ie){
860 static inline int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie,
866 static inline int wps_validate_probe_req(const struct wpabuf *wps_ie,
872 static inline int wps_validate_assoc_req(const struct wpabuf *wps_ie)
877 static inline int wps_validate_assoc_resp(const struct wpabuf *wps_ie)
    [all...]
wps_validate.c 1081 int wps_validate_beacon(const struct wpabuf *wps_ie)
1086 if (wps_ie == NULL) {
1090 if (wps_parse_msg(wps_ie, &attr) < 0) {
1119 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe,
1125 if (wps_ie == NULL) {
1130 if (wps_parse_msg(wps_ie, &attr) < 0) {
1178 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr)
1183 if (wps_ie == NULL) {
1188 if (wps_parse_msg(wps_ie, &attr) < 0) {
1225 int wps_validate_assoc_req(const struct wpabuf *wps_ie)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.c 1325 struct wpabuf *wps_ie; local
1394 struct wpabuf *wps_ie = NULL; local
1451 struct wpabuf *wps_ie; local
1563 struct wpabuf *wps_ie; local
    [all...]
sme.c 270 struct wpabuf *wps_ie; local
271 wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
272 if (wps_ie && wpabuf_len(wps_ie) <=
274 wpa_s->sme.assoc_req_ie_len = wpabuf_len(wps_ie);
275 os_memcpy(wpa_s->sme.assoc_req_ie, wpabuf_head(wps_ie),
279 wpabuf_free(wps_ie);
    [all...]
scan.c 433 struct wpabuf *wps_ie; local
434 wps_ie = wps_build_probe_req_ie(wps == 2 ? DEV_PW_PUSHBUTTON :
439 if (wps_ie) {
440 if (wpabuf_resize(&extra_ie, wpabuf_len(wps_ie)) == 0)
441 wpabuf_put_buf(extra_ie, wps_ie);
442 wpabuf_free(wps_ie);
    [all...]
p2p_supplicant.c 152 struct wpabuf *wps_ie, *ies; local
180 wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
183 if (wps_ie == NULL)
187 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
189 wpabuf_free(wps_ie);
192 wpabuf_put_buf(ies, wps_ie);
193 wpabuf_free(wps_ie);
3589 struct wpabuf *wps_ie, *ies; local
    [all...]
wpa_supplicant.c 1427 struct wpabuf *wps_ie; local
    [all...]
ctrl_iface.c 1996 struct wpabuf *wps_ie; local
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 28 const u8 *wps_ie; member in struct:ieee802_11_elems
ieee802_11_common.c 81 elems->wps_ie = pos;
  /external/wpa_supplicant_8/src/drivers/
driver_hostap.c 49 u8 *wps_ie; member in struct:hostap_driver_data
723 if (drv->wps_ie) {
725 drv->wps_ie, drv->wps_ie_len);
769 os_free(drv->wps_ie);
770 drv->wps_ie = NULL;
773 drv->wps_ie = os_malloc(wpabuf_len(proberesp));
774 if (drv->wps_ie == NULL)
776 os_memcpy(drv->wps_ie, wpabuf_head(proberesp),
1018 os_free(drv->wps_ie);
driver_atheros.c 1164 ie.wps_ie, IEEE80211_MAX_OPT_IE);
    [all...]
driver_test.c 2914 struct wpabuf *wps_ie, *ies; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
sta_info.h 123 struct wpabuf *wps_ie; /* WPS IE from (Re)Association Request */ member in struct:sta_info
wps_hostapd.c 1281 struct wpabuf *wps_ie; local
    [all...]
ieee802_11.c 919 if (hapd->conf->wps_state && elems.wps_ie) {
923 wpabuf_free(sta->wps_ie);
924 sta->wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
926 if (sta->wps_ie && wps_is_20(sta->wps_ie)) {
932 if (sta->wps_ie && wps_validate_assoc_req(sta->wps_ie) < 0) {
    [all...]
drv_callbacks.c 67 if (elems.wps_ie) {
68 ie = elems.wps_ie - 2;
beacon.c 394 if (hapd->p2p && elems.wps_ie) {
sta_info.c 235 wpabuf_free(sta->wps_ie);
ieee802_1x.c 740 sta->wps_ie, sta->p2p_ie, sta,
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 3440 struct wpabuf *wps_ie; local
    [all...]

Completed in 226 milliseconds