Home
last modified time | relevance | path

Searched refs:bypassEnabled (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBypassController.kt73 override fun isBypassEnabled() = bypassEnabled in isBypassEnabled()
78 var bypassEnabled: Boolean = false in isBypassEnabled() variable in com.android.systemui.statusbar.phone.KeyguardBypassController
133 bypassEnabled = tunerService.getValue(key, dismissByDefault) != 0 in onTuningChanged()
153 if (biometricSourceType == BiometricSourceType.FACE && bypassEnabled) { in onBiometricAuthenticated()
178 if (bypassEnabled) { in canBypass()
195 if (bypassEnabled) { in canPlaySubtleWindowAnimations()
217 pw.println(" bypassEnabled: $bypassEnabled") in dump()
DKeyguardClockPositionAlgorithm.java176 float overStrechAmount, boolean bypassEnabled, int unlockedStackScrollerPadding, in setup() argument
191 mBypassEnabled = bypassEnabled; in setup()
DNotificationPanelViewController.java1291 boolean bypassEnabled = mKeyguardBypassController.getBypassEnabled(); in updateClockAppearance()
1312 bypassEnabled, getUnlockedStackScrollerPadding(), in updateClockAppearance()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationWakeUpCoordinator.kt81 !bypassController.bypassEnabled) {
85 if (bypassController.bypassEnabled && !mNotificationsVisible) {
131 if (bypassController.bypassEnabled) {
286 if (bypassController.bypassEnabled && in onStateChanged()
314 if (bypassController.bypassEnabled) { in overrideDozeAmountIfBypass()
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/
DCoexCoordinatorTest.java193 private void testKeyguard_bypass_haptics(boolean bypassEnabled, boolean faceAccepted, in testKeyguard_bypass_haptics() argument
199 when(faceClient.isKeyguardBypassEnabled()).thenReturn(bypassEnabled); in testKeyguard_bypass_haptics()
522 private void testKeyguard_faceAuthOnly(boolean bypassEnabled) { in testKeyguard_faceAuthOnly() argument
527 when(client.isKeyguardBypassEnabled()).thenReturn(bypassEnabled); in testKeyguard_faceAuthOnly()
548 private void testKeyguard_coex_faceError(boolean bypassEnabled) { in testKeyguard_coex_faceError() argument
553 when(faceClient.isKeyguardBypassEnabled()).thenReturn(bypassEnabled); in testKeyguard_coex_faceError()
568 if (bypassEnabled) { in testKeyguard_coex_faceError()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
DMediaHierarchyManager.kt249 if (bypassController.bypassEnabled || statusbarState != StatusBarState.KEYGUARD) {
274 get() = fullShadeTransitionProgress != 0f && !bypassController.bypassEnabled &&
544 val onLockscreen = (!bypassController.bypassEnabled && in updateDesiredLocation()
932 val onLockscreen = (!bypassController.bypassEnabled && in calculateLocation()
DKeyguardMediaController.kt168 !bypassController.bypassEnabled && in refreshMediaPosition()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DBypassHeadsUpNotifier.kt133 if (!bypassController.bypassEnabled) { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DLockscreenShadeTransitionController.kt288 !keyguardBypassController.bypassEnabled && in <lambda>()
434 if (keyguardBypassController.bypassEnabled) { in <lambda>()
526 val transitionHeight = if (keyguardBypassController.bypassEnabled) height else 0.0f in <lambda>()
DPulseExpansionHandler.kt265 if (mStartingChild == null && !bypassController.bypassEnabled) { in captureStartingChild()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DLockscreenShadeTransitionControllerTest.kt115 whenever(keyguardBypassController.bypassEnabled).thenReturn(false) in setup()