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.java201 verify(mAuthSecretService, atLeastOnce()).primaryUserCredential(secret.capture()); in testSyntheticPasswordChangeCredentialKeepsAuthSecret()
212 reset(mAuthSecretService); in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret()
216 verify(mAuthSecretService).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret()
226 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testSecondaryUserDoesNotPassAuthSecret()
233 reset(mAuthSecretService); in testNoSyntheticPasswordOrCredentialDoesNotPassAuthSecret()
236 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testNoSyntheticPasswordOrCredentialDoesNotPassAuthSecret()
243 reset(mAuthSecretService); in testSyntheticPasswordAndCredentialDoesNotPassAuthSecret()
246 verify(mAuthSecretService, never()).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordAndCredentialDoesNotPassAuthSecret()
255 reset(mAuthSecretService); in testSyntheticPasswordButNoCredentialPassesAuthSecret()
258 verify(mAuthSecretService).primaryUserCredential(any(ArrayList.class)); in testSyntheticPasswordButNoCredentialPassesAuthSecret()
[all …]
DLockSettingsServiceTestable.java47 private IAuthSecret mAuthSecretService; field in LockSettingsServiceTestable.MockInjector
142 mAuthSecretService = authSecretService; in LockSettingsServiceTestable()
DBaseLockSettingsServiceTests.java89 IAuthSecret mAuthSecretService; field in BaseLockSettingsServiceTests
144 mAuthSecretService = mock(IAuthSecret.class); in setUp()
147 mSpManager, mAuthSecretService, mGsiService, mRecoverableKeyStoreManager); in setUp()
DCachedSyntheticPasswordTests.java116 verify(mAuthSecretService, atLeastOnce()).primaryUserCredential(secret.capture()); in testUntrustedCredentialChangeMaintainsAuthSecret()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java201 protected IAuthSecret mAuthSecretService; field in LockSettingsService
684 mAuthSecretService = IAuthSecret.getService(); in systemReady()
2343 if (mAuthSecretService != null && mUserManager.getUserInfo(userId).isPrimary()) { in onAuthTokenKnownForUser()
2350 mAuthSecretService.primaryUserCredential(secret); in onAuthTokenKnownForUser()