HomeSort by relevance Sort by last modified time
    Searched defs:wps (Results 1 - 25 of 42) sorted by null

1 2

  /external/wpa_supplicant_8/src/wps/
wps_upnp.h 2 * UPnP WPS Device
19 struct wps_data *wps; member in struct:upnp_wps_peer
37 upnp_wps_device_init(struct upnp_wps_device_ctx *ctx, struct wps_context *wps,
wps_er.h 28 struct wps_data *wps; member in struct:wps_er_sta
40 struct wps_data *wps; member in struct:wps_er_ap
77 struct wps_context *wps; member in struct:wps_er
wps_i.h 12 #include "wps.h"
18 * struct wps_data - WPS registration protocol data
25 * wps - Pointer to long term WPS context
27 struct wps_context *wps; member in struct:wps_data
134 int wps_derive_keys(struct wps_data *wps);
135 void wps_derive_psk(struct wps_data *wps, const u8 *dev_passwd,
137 struct wpabuf * wps_decrypt_encr_settings(struct wps_data *wps, const u8 *encr,
139 void wps_fail_event(struct wps_context *wps, enum wps_msg_type msg,
141 void wps_success_event(struct wps_context *wps, const u8 *mac_addr)
    [all...]
wps_upnp_i.h 2 * UPnP for WPS / internal definitions
109 struct wps_context *wps; member in struct:upnp_wps_device_interface
122 * This is known as an opaque struct declaration to users of the WPS UPnP code.
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pConfig.java 38 public WpsInfo wps; field in class:WifiP2pConfig
59 wps = new WpsInfo();
60 wps.setup = WpsInfo.PBC;
77 wps = new WpsInfo();
87 //Based on definitions in wps/wps_defs.h
91 wps.setup = WpsInfo.DISPLAY;
95 wps.setup = WpsInfo.PBC;
99 wps.setup = WpsInfo.KEYPAD;
102 wps.setup = WpsInfo.PBC;
111 sbuf.append("\n wps: ").append(wps)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap.h 271 * wps - WPS context data
275 struct wps_context *wps; member in struct:eap_config
eap_wsc.c 15 #include "wps/wps.h"
16 #include "wps/wps_defs.h"
27 struct wps_data *wps; member in struct:eap_wsc_data
151 struct wps_context *wps; local
157 wps = sm->wps;
158 if (wps == NULL) {
159 wpa_printf(MSG_ERROR, "EAP-WSC: WPS context not available");
182 data->wps_ctx = wps;
    [all...]
eap_i.h 345 struct wps_context *wps; member in struct:eap_sm
  /external/wpa_supplicant_8/src/radius/
radius_server.h 162 * wps - Wi-Fi Protected Setup context
164 * If WPS is used with an external RADIUS server (which is quite
165 * unlikely configuration), this is used to provide a pointer to WPS
168 struct wps_context *wps; member in struct:radius_server_conf
  /external/wpa_supplicant_8/src/ap/
drv_callbacks.c 20 #include "wps/wps.h"
74 wpa_printf(MSG_DEBUG, "STA included WPS IE in (Re)AssocReq");
92 wpa_printf(MSG_DEBUG, "STA did not include WPS/RSN/WPA IE in "
166 "Request - possible WPS use");
178 struct wpabuf *wps; local
180 wps = ieee802_11_vendor_ie_concat(ie, ielen,
182 if (wps) {
183 if (wps_is_20(wps)) {
184 wpa_printf(MSG_DEBUG, "WPS: STA
285 struct wpabuf *wps; local
    [all...]
beacon.c 18 #include "wps/wps_defs.h"
541 struct wpabuf *wps; local
542 wps = ieee802_11_vendor_ie_concat(ie, ie_len, WPS_DEV_OUI_WFA);
543 if (wps && !p2p_group_match_dev_type(hapd->p2p_group, wps)) {
547 wpabuf_free(wps);
550 wpabuf_free(wps);
692 wpa_printf(MSG_WARNING, "Device is trying to offload WPS "
ieee802_11.c 25 #include "wps/wps.h"
965 wpa_printf(MSG_DEBUG, "STA included WPS IE in (Re)Association "
966 "Request - assume WPS is used");
972 wpa_printf(MSG_DEBUG, "WPS: STA supports WPS 2.0");
978 wpa_printf(MSG_DEBUG, "WPS: Invalid WPS IE in "
984 "(Re)Association Request - possible WPS use");
1227 struct wpabuf *wps = wps_build_assoc_resp_ie(); local
    [all...]
wps_hostapd.c 2 * hostapd / WPS integration
19 #include "wps/wps.h"
20 #include "wps/wps_defs.h"
21 #include "wps/wps_dev_attr.h"
22 #include "wps/wps_attr_parse.h"
32 #include "wps/wps_upnp.h"
34 struct wps_context *wps);
43 static void hostapd_wps_nfc_clear(struct wps_context *wps);
105 "Received new WPA/WPA2-PSK from WPS for STA " MACSTR
963 struct wps_context *wps; local
1161 struct wps_context *wps = hapd->wps; local
1716 const struct wpabuf *wps = data; local
1770 struct wps_context *wps = hapd->wps; local
1807 struct wpabuf *wps; local
1915 struct wps_context *wps = hapd->wps; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_wsc.c 16 #include "wps/wps.h"
27 struct wps_data *wps; member in struct:eap_wsc_data
106 cfg.wps = sm->wps;
109 if (sm->wps == NULL || sm->wps->registrar == NULL) {
110 wpa_printf(MSG_INFO, "EAP-WSC: WPS Registrar not "
119 * Windows 7 uses Registrar mode to probe AP's WPS
142 data->wps = wps_init(&cfg)
    [all...]
eap.h 104 struct wps_context *wps; member in struct:eap_config
eap_i.h 179 struct wps_context *wps; member in struct:eap_sm
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.h 36 struct wps_context *wps; member in struct:eapol_auth_config
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.h 208 * wps - WPS context data
212 struct wps_context *wps; member in struct:eapol_ctx
  /external/wpa_supplicant_8/wpa_supplicant/
ap.c 29 #include "wps/wps.h"
312 * Enable WPS by default for open and WPA/WPA2-Personal network, but
346 os_memcpy(bss->uuid, wpa_s->wps->uuid, WPS_UUID_LEN);
764 if (!wpa_s->ap_iface || !wpa_s->ap_iface->bss[0]->wps)
767 reg = wpa_s->ap_iface->bss[0]->wps->registrar;
773 wpa_printf(MSG_DEBUG, "No WPS operation in progress at this "
779 * There are 2 cases to return wps cancel as success:
780 * 1. When wps cancel was initiated but no connection has been
782 * 2. Client is in the middle of exchanging WPS messages
1168 struct wps_context *wps; local
    [all...]
scan.c 54 int wps = 0; local
60 wps = 1;
72 wpa_s->wps->dev.p2p = 1;
73 if (!wps) {
74 wps = 1;
80 return wps;
363 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz "
375 wpa_dbg(wpa_s, MSG_DEBUG, "WPS: Scan only frequency %u MHz",
421 int wps = 0; local
432 wps = wpas_wps_in_use(wpa_s, &req_type)
    [all...]
events.c 765 wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE) ? " wps" : "",
828 "(WPS)");
838 * advertises active WPS operation that matches
1740 struct wpabuf *wps; local
    [all...]
wps_supplicant.c 2 * wpa_supplicant / WPS integration
24 #include "wps/wps_attr_parse.h"
60 wpa_printf(MSG_DEBUG, "WPS: Continuing association after eapol_cb");
86 wpa_printf(MSG_DEBUG, "WPS: PIN registration with " MACSTR
113 wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
119 wpa_printf(MSG_DEBUG, "WPS: Current network is "
128 wpa_printf(MSG_DEBUG, "WPS: Checking whether fast association "
132 struct wpabuf *wps; local
135 wps = wpa_bss_get_vendor_ie_multi(bss,
137 if (wps && wps_parse_msg(wps, &attr) == 0 &
1358 struct wps_context *wps; local
1678 unsigned int pbc = 0, auth = 0, pin = 0, wps = 0; local
1998 struct wps_context *wps = wpa_s->wps; local
2127 struct wps_context *wps = wpa_s->wps; local
2274 const struct wpabuf *wps = data; local
2342 struct wps_context *wps = wpa_s->wps; local
2406 struct wpabuf *wps; local
2541 struct wpabuf *wps; local
2681 struct wpabuf *wps; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 67 * Disable WPS tab by default; it will be enabled if wpa_supplicant is
68 * built with WPS support.
427 bool wps = types.contains("WSC"); local
428 actionWPS->setEnabled(wps);
429 wpsTab->setEnabled(wps);
430 wpaguiTab->setTabEnabled(wpaguiTab->indexOf(wpsTab), wps);
883 wpsStatusText->setText(tr("WPS AP in active PBC mode found"));
890 wpsStatusText->setText(tr("WPS AP with recently selected "
897 "Wi-Fi Protected Setup (WPS) AP\n"
899 wpsStatusText->setText("WPS AP indicating this client is
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
WifiDisplayController.java 675 WpsInfo wps = new WpsInfo(); local
677 wps.setup = mWifiDisplayWpsConfig;
679 wps.setup = WpsInfo.PBC;
682 wps.setup = WpsInfo.KEYPAD;
684 wps.setup = WpsInfo.DISPLAY;
686 config.wps = wps;
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
WifiP2pServiceImpl.java 1970 WpsInfo wps = (WpsInfo) message.obj; local
2295 final WpsInfo wps = mSavedPeerConfig.wps; local
    [all...]

Completed in 405 milliseconds

1 2