Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DSyntheticPasswordTests.java182 verify(mAuthSecretService, atLeastOnce()).primaryUserCredential(secret.capture()); in testSyntheticPasswordChangeCredentialKeepsAuthSecret()
194 reset(mAuthSecretService); in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret()
198 verify(mAuthSecretService).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret()
209 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testSecondaryUserDoesNotPassAuthSecret()
217 reset(mAuthSecretService); in testNoSyntheticPasswordOrCredentialDoesNotPassAuthSecret()
220 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testNoSyntheticPasswordOrCredentialDoesNotPassAuthSecret()
228 reset(mAuthSecretService); in testSyntheticPasswordAndCredentialDoesNotPassAuthSecret()
231 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordAndCredentialDoesNotPassAuthSecret()
241 reset(mAuthSecretService); in testSyntheticPasswordButNoCredentialPassesAuthSecret()
244 verify(mAuthSecretService).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordButNoCredentialPassesAuthSecret()
[all …]
DLockSettingsServiceTestable.java47 private IAuthSecret mAuthSecretService; field in LockSettingsServiceTestable.MockInjector
142 mAuthSecretService = authSecretService; in LockSettingsServiceTestable()
DBaseLockSettingsServiceTests.java96 IAuthSecret mAuthSecretService; field in BaseLockSettingsServiceTests
149 mAuthSecretService = mock(IAuthSecret.class); in setUp_baseServices()
152 mSpManager, mAuthSecretService, mGsiService, mRecoverableKeyStoreManager); in setUp_baseServices()
DCachedSyntheticPasswordTests.java124 verify(mAuthSecretService, atLeastOnce()).primaryUserCredential(secret.capture()); in testUntrustedCredentialChangeMaintainsAuthSecret()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java215 protected IAuthSecret mAuthSecretService; field in LockSettingsService
708 mAuthSecretService = IAuthSecret.getService(); in systemReady()
2411 if (mAuthSecretService != null && mUserManager.getUserInfo(userId).isPrimary()) { in onAuthTokenKnownForUser()
2418 mAuthSecretService.primaryUserCredential(secret); in onAuthTokenKnownForUser()