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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DFingerprintUnlockController.java99 private final UnlockMethodCache mUnlockMethodCache; field in class:FingerprintUnlockController
118 mUnlockMethodCache = unlockMethodCache;
277 } else if (unlockingAllowed || !mUnlockMethodCache.isMethodSecure()) {
H A DLockIcon.java55 private final UnlockMethodCache mUnlockMethodCache; field in class:LockIcon
66 mUnlockMethodCache = UnlockMethodCache.getInstance(context);
201 boolean trustManaged = mUnlockMethodCache.isTrustManaged() && !trustHidden;
211 boolean clickToForceLock = mUnlockMethodCache.isTrustManaged()
213 boolean longClickToForceLock = mUnlockMethodCache.isTrustManaged()
245 if (mUnlockMethodCache.isTrustManaged() && mUnlockMethodCache.isTrusted()
284 && !mUnlockMethodCache.isTrusted()) {
300 } else if (mUnlockMethodCache.canSkipBouncer()) {
302 } else if (mUnlockMethodCache
[all...]
H A DKeyguardBottomAreaView.java133 private UnlockMethodCache mUnlockMethodCache; field in class:KeyguardBottomAreaView
240 mUnlockMethodCache = UnlockMethodCache.getInstance(getContext());
241 mUnlockMethodCache.addListener(this);
H A DScrimController.java65 private final UnlockMethodCache mUnlockMethodCache; field in class:ScrimController
109 mUnlockMethodCache = UnlockMethodCache.getInstance(context);
132 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer();
H A DStatusBar.java414 protected UnlockMethodCache mUnlockMethodCache; field in class:StatusBar
933 mUnlockMethodCache = UnlockMethodCache.getInstance(mContext);
934 mUnlockMethodCache.addListener(this);
2742 return !mUnlockMethodCache.canSkipBouncer();
3854 boolean isSecure = mUnlockMethodCache.isMethodSecure();
3855 boolean canSkipBouncer = mUnlockMethodCache.canSkipBouncer();
4410 mUnlockMethodCache.isMethodSecure(),
4614 if (!expand && !mUnlockMethodCache.canSkipBouncer()) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarTest.java86 UnlockMethodCache mUnlockMethodCache; field in class:StatusBarTest
103 mUnlockMethodCache = mock(UnlockMethodCache.class);
121 mStatusBar = new TestableStatusBar(mStatusBarKeyguardViewManager, mUnlockMethodCache,
177 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
181 when(mUnlockMethodCache.isMethodSecure()).thenReturn(false);
195 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
199 when(mUnlockMethodCache.isMethodSecure()).thenReturn(true);
214 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
218 when(mUnlockMethodCache.isMethodSecure()).thenReturn(false);
233 when(mUnlockMethodCache
[all...]

Completed in 52 milliseconds