Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/trust/
DTrustManagerService.java153 private final StrongAuthTracker mStrongAuthTracker; field in TrustManagerService
164 mStrongAuthTracker = new StrongAuthTracker(context); in TrustManagerService()
183 mLockPatternUtils.registerStrongAuthTracker(mStrongAuthTracker); in onBootPhase()
365 if (mStrongAuthTracker.isTrustAllowedForUser(userId) in updateTrust()
549 if (!mStrongAuthTracker.canAgentsRunForUser(userInfo.id)) { in refreshAgentList()
550 int flag = mStrongAuthTracker.getStrongAuthForUser(userInfo.id); in refreshAgentList()
557 + Integer.toHexString(mStrongAuthTracker.getStrongAuthForUser( in refreshAgentList()
874 if (!mStrongAuthTracker.isTrustAllowedForUser(userId)) { in aggregateIsTrusted()
889 if (!mStrongAuthTracker.isTrustAllowedForUser(userId)) { in aggregateIsTrustManaged()
905 mStrongAuthTracker.allowTrustFromUnlock(userId); in dispatchUnlockAttempt()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java76 private KeyguardUpdateMonitor.StrongAuthTracker mStrongAuthTracker; field in KeyguardUpdateMonitorTest
110 when(mStrongAuthTracker.isUnlockingWithBiometricAllowed()).thenReturn(true); in setup()
381 mStrongAuthTracker = KeyguardUpdateMonitorTest.this.mStrongAuthTracker; in TestableKeyguardUpdateMonitor()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java220 protected StrongAuthTracker mStrongAuthTracker; field in KeyguardUpdateMonitor
912 return mStrongAuthTracker.isUnlockingWithBiometricAllowed(); in isUnlockingWithBiometricAllowed()
916 return mStrongAuthTracker.getStrongAuthForUser(userId) in isUserInLockdown()
925 return mStrongAuthTracker; in getStrongAuthTracker()
1437 mStrongAuthTracker = new StrongAuthTracker(context, this::notifyStrongAuthStateChanged); in KeyguardUpdateMonitor()
1499 mLockPatternUtils.registerStrongAuthTracker(mStrongAuthTracker); in KeyguardUpdateMonitor()
2526 final int strongAuthFlags = mStrongAuthTracker.getStrongAuthForUser(userId); in dump()
2541 final int strongAuthFlags = mStrongAuthTracker.getStrongAuthForUser(userId); in dump()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java186 private final SynchronizedStrongAuthTracker mStrongAuthTracker; field in LockSettingsService
465 mStrongAuthTracker = injector.getStrongAuthTracker(); in LockSettingsService()
466 mStrongAuthTracker.register(mStrongAuth); in LockSettingsService()
2122 return mStrongAuthTracker.getStrongAuthForUser(userId); in getStrongAuthForUser()