Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DSyntheticPasswordTests.java169 verify(mAuthSecretService, atLeastOnce()).primaryUserCredential(secret.capture()); in testSyntheticPasswordChangeCredentialKeepsAuthSecret()
179 reset(mAuthSecretService); in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret()
182 verify(mAuthSecretService).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret()
192 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testSecondaryUserDoesNotPassAuthSecret()
199 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testNoSyntheticPasswordOrCredentialDoesNotPassAuthSecret()
207 reset(mAuthSecretService); in testSyntheticPasswordAndCredentialDoesNotPassAuthSecret()
210 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordAndCredentialDoesNotPassAuthSecret()
219 reset(mAuthSecretService); in testSyntheticPasswordButNoCredentialPassesAuthSecret()
222 verify(mAuthSecretService).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordButNoCredentialPassesAuthSecret()
514 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testGsiDisablesAuthSecret()
DBaseLockSettingsServiceTests.java99 IAuthSecret mAuthSecretService; field in BaseLockSettingsServiceTests
152 mAuthSecretService = mock(IAuthSecret.class); in setUp_baseServices()
155 mSpManager, mAuthSecretService, mGsiService, mRecoverableKeyStoreManager, in setUp_baseServices()
DLockSettingsServiceTestable.java178 mAuthSecretService = authSecretService; in LockSettingsServiceTestable()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java250 protected IAuthSecret mAuthSecretService; field in LockSettingsService
845 mAuthSecretService = IAuthSecret.getService(/* retry */ true); in getAuthSecretHal()
2775 if (mAuthSecretService != null && mUserManager.getUserInfo(userId).isPrimary()) { in callToAuthSecretIfNeeded()
2782 mAuthSecretService.primaryUserCredential(secret); in callToAuthSecretIfNeeded()