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

  /src/external/bsd/wpa/dist/src/common/
privsep_commands.h 37 u8 ssids[WPAS_MAX_SCAN_SSIDS][32]; member in struct:privsep_cmd_scan
  /src/external/bsd/wpa/dist/src/drivers/
driver_nl80211_scan.c 191 struct nlattr *ssids; local
193 ssids = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
194 if (ssids == NULL)
198 wpa_ssid_txt(params->ssids[i].ssid,
199 params->ssids[i].ssid_len));
200 if (nla_put(msg, i + 1, params->ssids[i].ssid_len,
201 params->ssids[i].ssid))
204 nla_nest_end(msg, ssids);
593 * matchset will actually allow all SSIDs above the RSSI.
1162 struct nlattr *ssids; local
    [all...]
driver.h 431 * struct wpa_driver_scan_ssid - SSIDs to scan for
460 * ssids - SSIDs to scan for
462 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS]; member in struct:wpa_driver_scan_params
465 * num_ssids - Number of entries in ssids array
488 * filter_ssids - Filter for reporting SSIDs
491 * filter scan results to include only the specified SSIDs. %NULL
494 * number of APs with different SSIDs.
2343 /** Maximum number of supported active probe SSIDs */
2346 /** Maximum number of supported active probe SSIDs for sched_scan *
6439 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS]; member in struct:wpa_event_data::scan_info
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
scan.c 404 struct wpa_driver_scan_filter *ssids; local
418 ssids = os_calloc(count, sizeof(struct wpa_driver_scan_filter));
419 if (ssids == NULL)
425 os_memcpy(ssids[*num_ssids].ssid, ssid->ssid, ssid->ssid_len);
426 ssids[*num_ssids].ssid_len = ssid->ssid_len;
430 return ssids;
923 if (params->ssids[j].ssid_len == ssid_len &&
924 params->ssids[j].ssid &&
925 os_memcmp(params->ssids[j].ssid, ssid, ssid_len) == 0)
930 wpa_printf(MSG_DEBUG, "Over max scan SSIDs for manual request")
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/dbus/
dbus_new_handlers.c 1358 struct wpa_driver_scan_ssid *ssids = params->ssids; local
1367 "%s[dbus]: ssids must be an array of arrays of bytes",
1371 "Wrong SSIDs value type. Array of arrays of bytes required");
1380 "%s[dbus]: ssids must be an array of arrays of bytes",
1384 "Wrong SSIDs value type. Array of arrays of bytes required");
1391 "%s[dbus]: Too many ssids specified on scan dbus call",
1395 "Too many ssids specified. Specify at most four");
1419 /* Allow zero-length SSIDs */
1423 ssids[ssids_num].ssid = ssid
    [all...]

Completed in 33 milliseconds