Searched refs:mUnlockMethodCache (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLockIcon.java55 private final UnlockMethodCache mUnlockMethodCache; field in class:LockIcon
67 mUnlockMethodCache = UnlockMethodCache.getInstance(context);
208 boolean trustManaged = mUnlockMethodCache.isTrustManaged() && !trustHidden;
218 boolean clickToForceLock = mUnlockMethodCache.isTrustManaged()
220 boolean longClickToForceLock = mUnlockMethodCache.isTrustManaged()
257 if (mUnlockMethodCache.isTrustManaged() && mUnlockMethodCache.isTrusted()
296 && !mUnlockMethodCache.isTrusted()) {
312 } else if (mUnlockMethodCache.canSkipBouncer()) {
314 } else if (mUnlockMethodCache
[all...]
H A DFingerprintUnlockController.java108 private final UnlockMethodCache mUnlockMethodCache; field in class:FingerprintUnlockController
131 mUnlockMethodCache = unlockMethodCache;
319 } else if (unlockingAllowed || !mUnlockMethodCache.isMethodSecure()) {
H A DScrimController.java115 private final UnlockMethodCache mUnlockMethodCache; field in class:ScrimController
174 mUnlockMethodCache = UnlockMethodCache.getInstance(mContext);
175 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer();
320 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer();
H A DKeyguardBottomAreaView.java134 private UnlockMethodCache mUnlockMethodCache; field in class:KeyguardBottomAreaView
249 mUnlockMethodCache = UnlockMethodCache.getInstance(getContext());
250 mUnlockMethodCache.addListener(this);
H A DStatusBar.java373 protected UnlockMethodCache mUnlockMethodCache; field in class:StatusBar
775 mUnlockMethodCache = UnlockMethodCache.getInstance(mContext);
776 mUnlockMethodCache.addListener(this);
2029 return !mUnlockMethodCache.canSkipBouncer();
3100 && mUnlockMethodCache.canSkipBouncer()
3272 boolean isSecure = mUnlockMethodCache.isMethodSecure();
3273 boolean canSkipBouncer = mUnlockMethodCache.canSkipBouncer();
3846 mUnlockMethodCache.isMethodSecure(),
4121 if (!expand && !mUnlockMethodCache.canSkipBouncer()) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarTest.java126 @Mock private UnlockMethodCache mUnlockMethodCache; field in class:StatusBarTest
206 mStatusBar = new TestableStatusBar(mStatusBarKeyguardViewManager, mUnlockMethodCache,
265 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
269 when(mUnlockMethodCache.isMethodSecure()).thenReturn(false);
283 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
287 when(mUnlockMethodCache.isMethodSecure()).thenReturn(true);
302 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
306 when(mUnlockMethodCache.isMethodSecure()).thenReturn(false);
321 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
325 when(mUnlockMethodCache
[all...]

Completed in 729 milliseconds