HomeSort by relevance Sort by last modified time
    Searched refs:mUnlockMethodCache (Results 1 - 6 of 6) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
LockIcon.java 55 private final UnlockMethodCache mUnlockMethodCache;
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.isFaceUnlockRunning())
    [all...]
FingerprintUnlockController.java 99 private final UnlockMethodCache mUnlockMethodCache;
118 mUnlockMethodCache = unlockMethodCache;
277 } else if (unlockingAllowed || !mUnlockMethodCache.isMethodSecure()) {
ScrimController.java 65 private final UnlockMethodCache mUnlockMethodCache;
109 mUnlockMethodCache = UnlockMethodCache.getInstance(context);
132 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer();
KeyguardBottomAreaView.java 133 private UnlockMethodCache mUnlockMethodCache;
240 mUnlockMethodCache = UnlockMethodCache.getInstance(getContext());
241 mUnlockMethodCache.addListener(this);
    [all...]
StatusBar.java 414 protected UnlockMethodCache mUnlockMethodCache;
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
StatusBarTest.java 86 UnlockMethodCache mUnlockMethodCache;
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.canSkipBouncer()).thenReturn(true)
    [all...]

Completed in 585 milliseconds