Home
last modified time | relevance | path

Searched refs:isHotspotPasswordValid (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/
DWifiUtilsTest.java85 assertThat(WifiUtils.isHotspotPasswordValid("123", in testPassword()
87 assertThat(WifiUtils.isHotspotPasswordValid("12345678", in testPassword()
89 assertThat(WifiUtils.isHotspotPasswordValid("1234567890", in testPassword()
91 assertThat(WifiUtils.isHotspotPasswordValid(longPassword, in testPassword()
93 assertThat(WifiUtils.isHotspotPasswordValid("", in testPassword()
95 assertThat(WifiUtils.isHotspotPasswordValid("€¥£", in testPassword()
99 assertThat(WifiUtils.isHotspotPasswordValid("123", in testPassword()
101 assertThat(WifiUtils.isHotspotPasswordValid("12345678", in testPassword()
103 assertThat(WifiUtils.isHotspotPasswordValid("1234567890", in testPassword()
105 assertThat(WifiUtils.isHotspotPasswordValid(longPassword, in testPassword()
[all …]
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiTetherPasswordPreferenceController.java110 } else if (!WifiUtils.isHotspotPasswordValid(mPassword, securityType)) { in getPasswordValidated()
130 return WifiUtils.isHotspotPasswordValid(value, mSecurityType); in isTextValid()
/packages/apps/Settings/src/com/android/settings/wifi/
DWifiUtils.java74 public static boolean isHotspotPasswordValid(String password, int securityType) { in isHotspotPasswordValid() method in WifiUtils