HomeSort by: relevance | last modified time | path
    Searched defs:wps_method (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/wpa/dist/wpa_supplicant/examples/p2p/
p2p_connect.py 17 print(" %s -i <interface_name> -m <wps_method> \ " \
63 global wps_method
79 pin,wps_method,go_intent):
83 self.wps_method = wps_method
152 self.p2p_connect_arguements = {'wps_method':self.wps_method,
156 if (self.wps_method == 'display'):
160 print("Error:\n Pin required for wps_method=display")
170 elif (self.wps_method == 'keypad')
224 wps_method = None variable in class:P2P_Connect
    [all...]
  /src/external/bsd/wpa/dist/src/p2p/
p2p.h 151 * wps_method - WPS method to be used during provisioning
153 enum p2p_wps_method wps_method; member in struct:p2p_go_neg_results
1307 * @wps_method: WPS method to be used in provisioning
1325 enum p2p_wps_method wps_method,
1335 * @wps_method: WPS method to be used in provisioning
1353 enum p2p_wps_method wps_method,
p2p_i.h 47 enum p2p_wps_method wps_method; member in struct:p2p_device
822 u16 p2p_wps_method_pw_id(enum p2p_wps_method wps_method);
  /src/external/bsd/wpa/dist/wpa_supplicant/dbus/
dbus_new_handlers_p2p.c 632 enum p2p_wps_method wps_method = WPS_NOT_READY; local
672 } else if (os_strcmp(entry.key, "wps_method") == 0 &&
675 wps_method = WPS_PBC;
677 wps_method = WPS_PIN_DISPLAY;
679 wps_method = WPS_PIN_DISPLAY;
681 wps_method = WPS_PIN_KEYPAD;
693 if (wps_method == WPS_NOT_READY ||
699 * Validate the wps_method specified and the pin value.
701 if ((!pin || !pin[0]) && wps_method == WPS_PIN_KEYPAD)
706 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
ctrl_iface.c 6366 enum p2p_wps_method wps_method; local
6478 wps_method = WPS_PIN_DISPLAY;
6480 wps_method = WPS_PBC;
6482 wps_method = WPS_P2PS;
6486 wps_method = WPS_PIN_KEYPAD;
6490 wps_method = WPS_PIN_DISPLAY;
6498 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
6513 if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {

Completed in 51 milliseconds