Searched defs:ssid (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiUtils.java29 public static boolean isSSIDTooLong(String ssid) { argument
30 if (TextUtils.isEmpty(ssid)) {
33 return ssid.length() > SSID_ASCII_MAX_LENGTH;
36 public static boolean isSSIDTooShort(String ssid) { argument
37 if (TextUtils.isEmpty(ssid)) {
40 return ssid.length() < SSID_ASCII_MIN_LENGTH;
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
H A DWifiConfigHelper.java64 public static void setConfigSsid(WifiConfiguration config, String ssid) { argument
66 if (!Pattern.matches(REGEX_HEX_BSSID, ssid)) {
67 config.SSID = AccessPoint.convertToQuotedString(ssid);
69 config.SSID = ssid;
152 * Return the configured network that matches the ssid/security pair, or create one.
154 public static WifiConfiguration getConfiguration(Context context, String ssid, argument
156 WifiConfiguration config = getFromConfiguredNetworks(context, ssid, security);
159 // No configured network found; populate a new one with the provided ssid / security.
161 setConfigSsid(config, ssid);
238 private static WifiConfiguration getFromConfiguredNetworks(Context context, String ssid, argument
[all...]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/
H A DWifiInfo.java66 public final String ssid; field in class:WifiInfo
67 /** Wifi network in {@link #ssid} is hidden or not. */
69 /** Security type of the wifi network in {@link #ssid}. */
72 /** Password of the wifi network in {@link #ssid}. */
75 /** Proxy host for the wifi network in {@link #ssid}. */
78 /** Proxy port for the wifi network in {@link #ssid}. */
80 /** The proxy bypass for the wifi network in {@link #ssid}. */
83 /** The proxy bypass list for the wifi network in {@link #ssid}. */
90 bundle.putString(EXTRA_PROVISIONING_WIFI_SSID, ssid);
119 ssid
152 setSsid(String ssid) argument
[all...]

Completed in 137 milliseconds