Home
last modified time | relevance | path

Searched refs:TOO_SHORT (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Car/Settings/src/com/android/car/settings/security/
DPasswordHelper.java44 static final int TOO_SHORT = 1 << 1; field in PasswordHelper
102 errorCode |= TOO_SHORT; in validatePassword()
127 if ((error & TOO_SHORT) > 0) { in translateSettingsToSuwError()
144 errorCode |= TOO_SHORT; in validatePin()
169 if ((errorCode & TOO_SHORT) > 0) { in convertPasswordErrorCodeToMessages()
187 if ((errorCode & TOO_SHORT) > 0) { in convertPinErrorCodeToMessages()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/security/
DPasswordHelperTest.java52 .isEqualTo(PasswordHelper.TOO_SHORT); in testValidatePasswordTooShort()
93 .isEqualTo(PasswordHelper.TOO_SHORT); in testValidatePinWithTooFewDigits()
/packages/modules/Connectivity/Tethering/bpf_progs/
Dbpf_tethering.h43 ERR(TOO_SHORT) \
Doffload.c245 TC_DROP(TOO_SHORT);
560 TC_DROP(TOO_SHORT); in do_forward4()
/packages/apps/Settings/src/com/android/settings/password/
DChooseLockPassword.java34 import static com.android.internal.widget.PasswordValidationError.TOO_SHORT;
822 case TOO_SHORT: in convertErrorCodeToMessages()