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 108 private final UnlockMethodCache mUnlockMethodCache;
131 mUnlockMethodCache = unlockMethodCache;
319 } else if (unlockingAllowed || !mUnlockMethodCache.isMethodSecure()) {
ScrimController.java 83 private final UnlockMethodCache mUnlockMethodCache;
145 mUnlockMethodCache = UnlockMethodCache.getInstance(context);
182 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer();
KeyguardBottomAreaView.java 132 private UnlockMethodCache mUnlockMethodCache;
239 mUnlockMethodCache = UnlockMethodCache.getInstance(getContext());
240 mUnlockMethodCache.addListener(this);
    [all...]
StatusBar.java 429 protected UnlockMethodCache mUnlockMethodCache;
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
StatusBarTest.java 100 UnlockMethodCache mUnlockMethodCache;
126 mUnlockMethodCache = mock(UnlockMethodCache.class);
146 mStatusBar = new TestableStatusBar(mStatusBarKeyguardViewManager, mUnlockMethodCache,
210 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
214 when(mUnlockMethodCache.isMethodSecure()).thenReturn(false);
228 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
232 when(mUnlockMethodCache.isMethodSecure()).thenReturn(true);
247 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true);
251 when(mUnlockMethodCache.isMethodSecure()).thenReturn(false);
266 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true)
    [all...]

Completed in 2641 milliseconds