HomeSort by relevance Sort by last modified time
    Searched refs:SSID (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 30 public String SSID;
56 public ScanResult(String SSID, String BSSID, String caps, int level, int frequency) {
57 this.SSID = SSID;
70 sb.append("SSID: ").
71 append(SSID == null ? none : SSID).
91 dest.writeString(SSID);
WifiConfiguration.java 32 public static final String ssidVarName = "ssid";
217 * The network's SSID. Can either be an ASCII string,
223 public String SSID;
261 * This is a network that does not broadcast its SSID, so an
262 * SSID-specific probe request must be used for scans.
300 SSID = null;
324 sbuf.append("ID: ").append(this.networkId).append(" SSID: ").append(this.SSID).
406 SSID = scannedAP.SSID;
    [all...]
WifiInfo.java 79 void setSSID(String SSID) {
80 mSSID = SSID;
86 * Returns the service set identifier (SSID) of the current 802.11 network.
87 * If the SSID is an ASCII string, it will be returned surrounded by double
89 * SSID may be {@code null} if there is no network currently connected.
90 * @return the SSID
184 * @return {@code true} if this network does not broadcast its SSID, so an
185 * SSID-specific probe request must be used for scans.
232 sb.append("SSID: ").append(mSSID == null ? none : mSSID).
WifiStateTracker.java     [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 147 private boolean existSSID(String ssid) {
149 if (w.SSID.equals(ssid))
155 private int findConfiguredNetworks(String SSID, List<WifiConfiguration> networks) {
157 if (w.SSID.equals(SSID))
165 if ((!w.SSID.equals(wifiConfiguration.SSID)) && w.status != Status.CURRENT) {
365 wifiConfiguration.SSID = SSID1;
392 wifiConfiguration.SSID = SSID2
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiConnectionTest.java 102 assertTrue("failed to connect to " + config.SSID,
111 // step 3: verify the current connected network is the given SSID
113 Log.v(TAG, "config.SSID = " + config.SSID);
117 assertTrue(config.SSID.contains(mAct.mWifiManager.getConnectionInfo().getSSID()));
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 42 final String ssid; field in class:AccessPoint
77 ssid = (config.SSID == null ? "" : removeDoubleQuotes(config.SSID));
87 ssid = result.SSID;
95 setTitle(ssid);
131 // Sort by ssid.
132 return ssid.compareToIgnoreCase(other.ssid);
    [all...]
WifiApSettings.java 84 mWifiConfig.SSID,
139 mWifiConfig.SSID,
WifiApDialog.java 42 * Dialog to configure the SSID and security settings
76 * TODO: SSID in WifiConfiguration for soft ap
81 config.SSID = mSsid.getText().toString();
112 mSsid = (TextView) mView.findViewById(R.id.ssid);
120 mSsid.setText(mWifiConfig.SSID);
WifiSettings.java 191 menu.setHeaderTitle(mSelected.ssid);
219 config.SSID = AccessPoint.convertToQuotedString(mSelected.ssid);
386 if (result.SSID == null || result.SSID.length() == 0 ||
WifiStatusTest.java 140 mSSID = (TextView) findViewById(R.id.ssid);
277 if (TextUtils.isEmpty(scanResult.SSID)) {
281 scanList.append(scanResult.SSID+" ");
WifiApEnabler.java 156 (wifiConfig == null) ? s : wifiConfig.SSID));
WifiDialog.java 96 config.SSID = AccessPoint.convertToQuotedString(
101 config.SSID = AccessPoint.convertToQuotedString(
102 mAccessPoint.ssid);
181 mSsid = (TextView) mView.findViewById(R.id.ssid);
186 setTitle(mAccessPoint.ssid);
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
WifiSoftAPTest.java 68 // Test case 1: Test the soft AP SSID with letters
72 config.SSID = "abcdefghijklmnopqrstuvwxyz";
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestActivity.java 76 public String mPowerSsid = "GoogleGuest"; //Default power SSID
210 Log.v(LOG_TAG, "SSID: " + configuration[0]);
350 * Associate the device to given SSID
356 config.SSID = knownSSID;
362 * Connect to Wi-Fi with the given configuration. Note the SSID in the configuration
368 String ssid = config.SSID; local
369 config.SSID = convertToQuotedString(ssid);
409 if (sr.SSID.equals(ssid))
    [all...]
AccessPointParserHelper.java 39 * <accesspoint></accesspoint>. The supported configuration includes: ssid,
47 * <ssid>testnet</ssid>
92 boolean ssid = false;
114 if (tagName.equalsIgnoreCase("ssid")) {
115 ssid = true;
153 if (ssid) {
154 config.SSID = new String(ch, start, length);
155 Log.v(TAG, "ssid: " + config.SSID);
    [all...]
  /frameworks/base/services/java/com/android/server/
WifiService.java 610 * @param wifiConfig SSID, security and channel details as
639 wifiConfig.SSID = Settings.Secure.getString(cr, Settings.Secure.WIFI_AP_SSID);
640 if (wifiConfig.SSID == null)
658 Settings.Secure.putString(cr, Settings.Secure.WIFI_AP_SSID, wifiConfig.SSID);
719 wifiConfig.SSID = mContext.getString(R.string.wifi_tether_configure_ssid_default);
832 // network-id | ssid | bssid | flags
1448 String ssid; local
    [all...]
NetworkManagementService.java 618 * argv3 - SSID
626 " %s %s %s", convertQuotedString(wifiConfig.SSID),
670 + " %s %s %s", convertQuotedString(wifiConfig.SSID),
WifiWatchdogService.java 99 * The SSID of the network that the watchdog is currently monitoring. Only
466 * @param ssid The SSID of the access point.
469 private void onConnected(String ssid, String bssid) {
471 myLogV("onConnected: SSID: " + ssid + ", BSSID: " + bssid);
480 if ((mSsid == null) || !mSsid.equals(ssid)) {
485 mHandler.dispatchNetworkChanged(ssid);
488 if (requiresWatchdog(ssid, bssid)) {
490 myLogD(ssid + " (" + bssid + ") requires the watchdog")
1165 String ssid; field in class:WifiWatchdogService.AccessPoint
    [all...]
  /external/wpa_supplicant/
driver_broadcom.c 117 static int wpa_driver_broadcom_get_ssid(void *priv, u8 *ssid)
125 os_memcpy(ssid, s.SSID, s.SSID_len);
395 static int wpa_driver_broadcom_scan(void *priv, const u8 *ssid,
401 if (ssid && ssid_len > 0 && ssid_len <= sizeof(wst.SSID)) {
403 os_memcpy(wst.SSID, ssid, ssid_len);
462 os_memcpy(results[ap_num].ssid, wbi->SSID, wbi->SSID_len)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_broadcom.c 122 static int wpa_driver_broadcom_get_ssid(void *priv, u8 *ssid)
130 os_memcpy(ssid, s.SSID, s.SSID_len);
400 static int wpa_driver_broadcom_scan(void *priv, const u8 *ssid,
406 if (ssid && ssid_len > 0 && ssid_len <= sizeof(wst.SSID)) {
408 os_memcpy(wst.SSID, ssid, ssid_len);
467 os_memcpy(results[ap_num].ssid, wbi->SSID, wbi->SSID_len)
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/wl/sys/
wl_cfg80211.c 284 static int32 wl_run_iscan(struct wl_iscan_ctrl *iscan, struct wlc_ssid *ssid, uint16 action);
632 wl_iscan_prep(struct wl_scan_params *params, struct wlc_ssid *ssid)
647 if (ssid && ssid->SSID_len)
648 memcpy(&params->ssid, ssid, sizeof(wlc_ssid_t));
677 wl_run_iscan(struct wl_iscan_ctrl *iscan, struct wlc_ssid *ssid, uint16 action)
686 if (ssid && ssid->SSID_len)
694 wl_iscan_prep(&params->params, ssid);
721 struct wlc_ssid ssid; local
1024 struct cfg80211_ssid ssid; local
1379 struct wlc_ssid ssid; local
2731 struct wlc_ssid *ssid; local
4192 struct wlc_ssid *ssid; local
    [all...]
wl_iw.c 253 wl_iw_iscan(iscan_info_t *iscan, wlc_ssid_t *ssid, uint16 action);
885 wl_format_ssid(char* ssid_buf, uint8* ssid, int ssid_len)
893 c = (int)ssid[i];
1238 WL_ERROR(("SSID is not presented or corrupted ret=%d\n", nssid));
1289 static wlc_ssid_t ssid = {0}; local
1308 error = dev_wlc_ioctl(dev, WLC_GET_SSID, &ssid, sizeof(ssid));
1310 ssid.SSID_len = dtoh32(ssid.SSID_len);
1311 wl_format_ssid(ssidbuf, ssid.SSID, dtoh32(ssid.SSID_len))
1794 wlc_ssid_t ssid; local
3127 wlc_ssid_t ssid; local
3178 wlc_ssid_t ssid; local
3941 wlc_ssid_t ssid; local
7489 wlc_ssid_t * ssid; local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c     [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
wlioctl.h 71 uint8 ssid[32]; member in struct:ssid_info
101 uint8 SSID[32];
128 uchar SSID[32];
141 wlc_ssid_t ssid; member in struct:wl_scan_params
250 wlc_ssid_t ssid; member in struct:wl_join_params
1332 wlc_ssid_t ssid; member in struct:wl_pfn
    [all...]

Completed in 805 milliseconds

1 2