Home
last modified time | relevance | path

Searched refs:mCredentialType (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
DKeySyncTask.java87 private final int mCredentialType; field in KeySyncTask
145 mCredentialType = credentialType; in KeySyncTask()
168 if (mCredentialType == LockPatternUtils.CREDENTIAL_TYPE_NONE) { in syncKeys()
179 Log.w(TAG, "Unsupported credential type " + mCredentialType + " for user " + mUserId); in syncKeys()
206 return mCredentialType != LockPatternUtils.CREDENTIAL_TYPE_NONE in isCustomLockScreen()
207 && mCredentialType != LockPatternUtils.CREDENTIAL_TYPE_PATTERN in isCustomLockScreen()
208 && mCredentialType != LockPatternUtils.CREDENTIAL_TYPE_PIN in isCustomLockScreen()
209 && mCredentialType != LockPatternUtils.CREDENTIAL_TYPE_PASSWORD; in isCustomLockScreen()
257 mCredentialType, mCredential)) { in syncKeysForAgent()
361 .setLockScreenUiFormat(getUiFormat(mCredentialType)) in syncKeysForAgent()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthCredentialPasswordView.java73 if (mCredentialType == Utils.CREDENTIAL_PIN) { in onAttachedToWindow()
100 try (LockscreenCredential password = mCredentialType == Utils.CREDENTIAL_PIN in checkPasswordAndUnlock()
DAuthCredentialView.java86 protected @Utils.CredentialType int mCredentialType; field in AuthCredentialView
189 mCredentialType = credentialType; in setCredentialType()
314 switch (mCredentialType) { in onCredentialVerified()
370 getLastAttemptBeforeWipeMessageRes(getUserTypeForWipe(), mCredentialType)) in showLastAttemptBeforeWipeDialog()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DAuthContainerViewTest.java189 assertEquals(Utils.CREDENTIAL_PATTERN, mAuthContainer.mCredentialView.mCredentialType); in testCredentialViewUsesEffectiveUserId()