Searched refs:isHotspotPasswordValid (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/ |
D | WifiUtilsTest.java | 85 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/ |
D | WifiTetherPasswordPreferenceController.java | 110 } else if (!WifiUtils.isHotspotPasswordValid(mPassword, securityType)) { in getPasswordValidated() 130 return WifiUtils.isHotspotPasswordValid(value, mSecurityType); in isTextValid()
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
D | WifiUtils.java | 74 public static boolean isHotspotPasswordValid(String password, int securityType) { in isHotspotPasswordValid() method in WifiUtils
|