HomeSort by relevance Sort by last modified time
    Searched refs:ssid (Results 101 - 125 of 291) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/wpa_supplicant_8/hostapd/
config_file.c 808 os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
1144 bss->ssid.wpa_psk == NULL && bss->ssid.wpa_passphrase == NULL &&
1145 bss->ssid.wpa_psk_file == NULL &&
1189 bss->ssid.security_policy == SECURITY_STATIC_WEP) {
1212 if (bss->wps_state && bss->ssid.wep.keys_set && bss->wpa == 0) {
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiConnectionTest.java 116 assertTrue("failed to connect to " + config.SSID,
123 // step 3: verify the current connected network is the given SSID
126 log("config.SSID = " + config.SSID);
130 assertTrue(config.SSID.contains(mAct.mWifiManager.getConnectionInfo().getSSID()));
148 String ssid = networks.get(i).SSID; local
149 log("-- START Wi-Fi connection test to : " + ssid + " --");
154 log("-- END Wi-Fi connection test to " + ssid + " -- ");
  /frameworks/base/wifi/java/android/net/wifi/
WifiSsid.java 32 * Stores SSID octets and handles conversion.
47 public static final String NONE = "<unknown ssid>";
222 WifiSsid ssid = new WifiSsid();
226 ssid.octets.write(b, 0, length);
227 return ssid;
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pGroupList.java 140 * and the ssid.
143 * @param ssid ssid.
146 int getNetworkId(String deviceAddress, String ssid) {
147 if (deviceAddress == null || ssid == null) {
154 ssid.equals(grp.getNetworkName())) {
  /external/wpa_supplicant_8/src/ap/
ap_list.c 245 if (elems->ssid) {
247 if (len >= sizeof(ap->ssid))
248 len = sizeof(ap->ssid) - 1;
249 os_memcpy(ap->ssid, elems->ssid, len);
250 ap->ssid[len] = '\0';
ieee802_1x.c 234 ieee802_1x_get_group(struct hostapd_data *hapd, struct hostapd_ssid *ssid,
240 return &ssid->wep;
242 if (vlan_id <= ssid->max_dyn_vlan_keys && ssid->dyn_vlan_keys &&
243 ssid->dyn_vlan_keys[vlan_id])
244 return ssid->dyn_vlan_keys[vlan_id];
258 if (ssid->dyn_vlan_keys == NULL) {
259 int size = (vlan_id + 1) * sizeof(ssid->dyn_vlan_keys[0]);
260 ssid->dyn_vlan_keys = os_zalloc(size);
261 if (ssid->dyn_vlan_keys == NULL
    [all...]
wps_hostapd.h 34 int hostapd_wps_config_ap(struct hostapd_data *hapd, const char *ssid,
  /external/wpa_supplicant_6/wpa_supplicant/examples/
wpas-test.py 62 # Convert the byte-array for SSID and BSSID to printable strings
67 ssid = byte_array_to_string(props["ssid"])
83 print " %s :: ssid='%s' wpa=%s wpa2=%s quality=%d%% rate=%d freq=%d" % (bssid, ssid, wpa, wpa2, qual, maxrate, freq)
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_hostap.c 341 if (wpa_driver_wext_set_ssid(drv->wext, params->ssid, params->ssid_len)
368 static int wpa_driver_hostap_scan(void *priv, const u8 *ssid, size_t ssid_len)
374 if (ssid == NULL) {
377 * might not support Host AP specific scan request (with SSID
379 return wpa_driver_wext_scan(drv->wext, ssid, ssid_len);
388 os_memcpy(param.u.scan_req.ssid, ssid, ssid_len);
427 static int wpa_driver_hostap_get_ssid(void *priv, u8 *ssid)
430 return wpa_driver_wext_get_ssid(drv->wext, ssid);
driver.h 37 * @ssid: SSID
38 * @ssid_len: length of the ssid
66 u8 ssid[32]; member in struct:wpa_scan_result
102 * include SSID in IE format. All drivers are encouraged to be extended to
157 * ssid - The selected SSID
159 const u8 *ssid; member in struct:wpa_driver_associate_params
248 * and SSID as the current AP.
401 * get_ssid - Get the current SSID
    [all...]
driver_atmel.c 405 if (wpa_driver_wext_set_ssid(drv->wext, params->ssid, params->ssid_len)
426 static int wpa_driver_atmel_get_ssid(void *priv, u8 *ssid)
429 return wpa_driver_wext_get_ssid(drv->wext, ssid);
433 static int wpa_driver_atmel_scan(void *priv, const u8 *ssid, size_t ssid_len)
436 return wpa_driver_wext_scan(drv->wext, ssid, ssid_len);
driver_prism54.c 253 if (wpa_driver_wext_set_ssid(drv->wext, params->ssid,
300 static int wpa_driver_prism54_get_ssid(void *priv, u8 *ssid)
303 return wpa_driver_wext_get_ssid(drv->wext, ssid);
307 static int wpa_driver_prism54_scan(void *priv, const u8 *ssid, size_t ssid_len)
310 return wpa_driver_wext_scan(drv->wext, ssid, ssid_len);
driver_wext.c 184 * wpa_driver_wext_get_ssid - Get SSID, SIOCGIWESSID
186 * @ssid: Buffer for the SSID; must be at least 32 bytes long
187 * Returns: SSID length on success, -1 on failure
189 int wpa_driver_wext_get_ssid(void *priv, u8 *ssid)
197 iwr.u.essid.pointer = (caddr_t) ssid;
207 /* Some drivers include nul termination in the SSID, so let's
211 if (ret > 0 && ssid[ret - 1] == '\0' &&
221 * wpa_driver_wext_set_ssid - Set SSID, SIOCSIWESSID
223 * @ssid: SSI
1202 struct wpa_ssid *ssid, *ssid_orig; local
1334 u8 ssid[32]; member in struct:wext_scan_data
2074 u8 ssid[32]; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 74 u8 ssid[32]; member in struct:wpa_bss
101 const u8 *ssid, size_t ssid_len);
config_ssid.h 40 * the network list, struct wpa_config::ssid. Each network block in the
48 * this list is stored in the ssid field of struct wpa_config.
91 * ssid - Service set identifier (network name)
93 * This is the SSID for the network. For wireless interfaces, this is
95 * ssid_len=0), any SSID can be used. For wired interfaces, this must
96 * be set to %NULL. Note: SSID may contain any characters, even nul
99 * and the ssid field is not guaranteed to be nul terminated.
101 u8 *ssid; member in struct:wpa_ssid
104 * ssid_len - Length of the SSID
137 * If this is set, psk will be generated using the SSID and passphras
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-test.py 62 # Convert the byte-array for SSID and BSSID to printable strings
67 ssid = byte_array_to_string(props["ssid"])
83 print " %s :: ssid='%s' wpa=%s wpa2=%s quality=%d%% rate=%d freq=%d" % (bssid, ssid, wpa, wpa2, qual, maxrate, freq)
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 60 String ssid; field in class:AccessPoint
186 ssid = (config.SSID == null ? "" : removeDoubleQuotes(config.SSID));
195 ssid = result.SSID;
243 // Sort by ssid.
244 return ssid.compareToIgnoreCase(other.ssid);
248 if (ssid.equals(result.SSID) && security == getSecurity(result))
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
scanResultTable.c 299 /* Verify that the SSID IE is available (if not return NOK) */
302 TRACE6(pScanResultTable->hReport, REPORT_SEVERITY_WARNING, "scanResultTable_UpdateEntry: can't add site %02d:%02d:%02d:%02d:%02d:%02d" " because SSID IE is NULL\n", pBssid[ 0 ], pBssid[ 1 ], pBssid[ 2 ], pBssid[ 3 ], pBssid[ 4 ], pBssid[ 5 ]);
306 /* use temporary SSID structure, and verify SSID length */
310 TRACE2(pScanResultTable->hReport, REPORT_SEVERITY_WARNING, "scanResultTable_UpdateEntry: SSID len=%d out of range. replaced by %d\n", tTempSsid.len, MAX_SSID_LEN);
320 /* check if the SSID:BSSID pair already exists in the table */
429 * \brief retreives an entry according to its SSID and BSSID
434 * \param pSsid - SSID to search for
443 TRACE6(pScanResultTable->hReport, REPORT_SEVERITY_INFORMATION , "scanResultTable_GetBySsidBssidPair: Searching for SSID BSSID %02x:%02x:%02x:%02x:%02x:%02x\n", (*pBssid)[ 0 ], (*pBssid)[ 1 ], (*pBssid)[ 2 ], (*pBssid)[ 3 ], (*pBssid)[ 4 ], (*pBssid)[ 5 ]);
448 /* if the BSSID and SSID match *
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
config_ssid.h 39 * the network list, struct wpa_config::ssid. Each network block in the
47 * this list is stored in the ssid field of struct wpa_config.
90 * ssid - Service set identifier (network name)
92 * This is the SSID for the network. For wireless interfaces, this is
94 * ssid_len=0), any SSID can be used. For wired interfaces, this must
95 * be set to %NULL. Note: SSID may contain any characters, even nul
98 * and the ssid field is not guaranteed to be nul terminated.
100 u8 *ssid; member in struct:wpa_ssid
103 * ssid_len - Length of the SSID
133 * If this is set, psk will be generated using the SSID and passphras
    [all...]
wpa_supplicant_i.h 185 u8 ssid[32]; member in struct:wpa_client_mlme
310 struct wpa_ssid *prev_scan_ssid; /* previously scanned SSID;
312 * with broadcast SSID)
314 * SSID was used in the previous scan
383 struct wpa_ssid *ssid,
387 struct wpa_ssid *ssid);
389 struct wpa_ssid *ssid);
416 struct wpa_ssid *ssid);
538 static inline int wpa_drv_get_ssid(struct wpa_supplicant *wpa_s, u8 *ssid)
541 return wpa_s->driver->get_ssid(wpa_s->drv_priv, ssid);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
ieee802_11_common.h 20 u8 *ssid; member in struct:ieee802_11_elems
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
sha1.h 31 void pbkdf2_sha1(const char *passphrase, const char *ssid, size_t ssid_len,
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.h 66 void add_persistent(int id, const char *ssid, const char *bssid);
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
preauth.c 451 const u8 *ssid, *rsn; local
455 ssid = wpa_scan_get_ie(r, WLAN_EID_SSID);
456 if (ssid == NULL || ssid[1] != sm->ssid_len ||
457 os_memcmp(ssid + 2, sm->ssid, ssid[1]) != 0)
  /external/tcpdump/
print-802_11.c 55 fn_print(p.ssid.ssid, NULL); \
177 memcpy(&pbody->ssid, p + offset, 2);
179 if (pbody->ssid.length != 0) {
180 if (pbody->ssid.length >
181 sizeof(pbody->ssid.ssid) - 1)
183 if (!TTEST2(*(p + offset), pbody->ssid.length))
185 memcpy(&pbody->ssid.ssid, p + offset
    [all...]

Completed in 319 milliseconds

1 2 3 45 6 7 8 91011>>