Home
last modified time | relevance | path

Searched refs:isBypassEnabled (Results 1 – 25 of 27) sorted by relevance

12

/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/deviceentry/data/repository/
DFakeDeviceEntryRepository.kt31 override val isBypassEnabled: StateFlow<Boolean> = _isBypassEnabled constant in com.android.systemui.deviceentry.data.repository.FakeDeviceEntryRepository
41 fun setBypassEnabled(isBypassEnabled: Boolean) { in setBypassEnabled()
42 _isBypassEnabled.value = isBypassEnabled in setBypassEnabled()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/shelf/domain/interactor/
DNotificationShelfInteractor.kt49 deviceEntryFaceAuthRepository.isBypassEnabled, in <lambda>()
50 ) { isKeyguardShowing, isBypassEnabled -> in <lambda>() method
51 isKeyguardShowing && isBypassEnabled in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryRepositoryTest.kt74 whenever(keyguardBypassController.isBypassEnabled).thenAnswer { false } in isBypassEnabled_disabledInController()
81 assertThat(underTest.isBypassEnabled.value).isFalse() in isBypassEnabled_disabledInController()
87 whenever(keyguardBypassController.isBypassEnabled).thenAnswer { true } in isBypassEnabled_enabledInController()
94 assertThat(underTest.isBypassEnabled.value).isTrue() in isBypassEnabled_enabledInController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/
DHeadsUpNotificationInteractor.kt83 faceAuthInteractor.isBypassEnabled, in <lambda>()
87 ) { isBypassEnabled, isShadeCollapsed, keyguardState, areNotificationsHidden -> in <lambda>() method
92 isOnLockScreen -> isBypassEnabled // on the lock screen only show for bypass in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/domain/interactor/
DNotificationIconsInteractor.kt114 deviceEntryInteractor.isBypassEnabled
115 .flatMapLatest { isBypassEnabled -> in isBypassEnabled() method
120 showPulsing = !isBypassEnabled, in isBypassEnabled()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryRepository.kt41 val isBypassEnabled: StateFlow<Boolean> in isLockscreenEnabled() constant
63 override val isBypassEnabled: StateFlow<Boolean> = in isLockscreenEnabled() constant in com.android.systemui.deviceentry.data.repository.DeviceEntryRepositoryImpl
DNoopDeviceEntryFaceAuthRepository.kt52 override val isBypassEnabled: Flow<Boolean> constant in com.android.systemui.deviceentry.data.repository.NoopDeviceEntryFaceAuthRepository
DDeviceEntryFaceAuthRepository.kt116 val isBypassEnabled: Flow<Boolean> in <lambda>() constant
211 override val isBypassEnabled: Flow<Boolean> = constant
279 Pair(isBypassEnabled, "isBypassEnabled"),
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/shelf/domain/interactor/
DNotificationShelfInteractorTest.kt88 deviceEntryFaceAuthRepository.isBypassEnabled.value = false in <lambda>()
98 deviceEntryFaceAuthRepository.isBypassEnabled.value = true in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/shelf/ui/viewmodel/
DNotificationShelfViewModelTest.kt102 deviceEntryFaceAuthRepository.isBypassEnabled.value = false in canModifyColorOfNotifications_whenKeyguardShowingAndNotBypass()
113 deviceEntryFaceAuthRepository.isBypassEnabled.value = true in cannotModifyColorOfNotifications_whenBypass()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/
DKeyguardRootViewModel.kt320 deviceEntryInteractor.isBypassEnabled, in <lambda>()
326 isBypassEnabled: Boolean, in <lambda>() method
345 isBypassEnabled -> true in <lambda>()
381 .sample(deviceEntryInteractor.isBypassEnabled) { (prev, fullyHidden), bypassEnabled -> in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceEntryFaceAuthInteractor.kt42 val isBypassEnabled: Flow<Boolean> constant
DNoopDeviceEntryFaceAuthInteractor.kt41 override val isBypassEnabled: Flow<Boolean> = flowOf(false) constant in com.android.systemui.deviceentry.domain.interactor.NoopDeviceEntryFaceAuthInteractor
DDeviceEntryInteractor.kt268 val isBypassEnabled: StateFlow<Boolean> = repository.isBypassEnabled in <lambda>() constant
DDeviceUnlockedInteractor.kt60 if (deviceEntryRepository.isBypassEnabled.value) { in <lambda>()
DSystemUIDeviceEntryFaceAuthInteractor.kt287 override val isBypassEnabled: Flow<Boolean> = repository.isBypassEnabled in <lambda>() constant in com.android.systemui.deviceentry.domain.interactor.SystemUIDeviceEntryFaceAuthInteractor
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
DFakeDeviceEntryFaceAuthRepository.kt59 override val isBypassEnabled = MutableStateFlow(false) constant in com.android.systemui.keyguard.data.repository.FakeDeviceEntryFaceAuthRepository
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/domain/interactor/
DHeadsUpNotificationInteractorTest.kt352 faceAuthRepository.isBypassEnabled.value = true in showHeadsUpStatusBar_onByPassLockScreen_true()
366 faceAuthRepository.isBypassEnabled.value = true in showHeadsUpStatusBar_onByPassLockScreen_withoutNotifications_false()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java474 || (ambientState.isBypassEnabled() && ambientState.isPulseExpanding())) { in initAlgorithmState()
535 || (ambientState.isBypassEnabled() && ambientState.isPulseExpanding())) { in updatePositionsForState()
567 && (!ambientState.isBypassEnabled() || !ambientState.isPulseExpanding()) in getExpansionFractionWithoutShelf()
702 boolean bypassPulseNotExpanding = ambientState.isBypassEnabled()
1194 boolean isBypassEnabled();
DAmbientState.java405 public boolean isBypassEnabled() { in isBypassEnabled() method in AmbientState
406 return mBypassController.isBypassEnabled(); in isBypassEnabled()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/domain/startable/
DSceneContainerStartableTest.kt299 isBypassEnabled = true, in <lambda>()
317 isBypassEnabled = false, in <lambda>()
335 isBypassEnabled = true, in <lambda>()
359 isBypassEnabled = false, in <lambda>()
1377 isBypassEnabled: Boolean = false, in <lambda>()
1400 kosmos.fakeDeviceEntryRepository.setBypassEnabled(isBypassEnabled) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ui/viewmodel/
DKeyguardStatusBarViewModelTest.kt134 faceAuthRepository.isBypassEnabled.value = true in isVisible_headsUpStatusBarShown_false()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBypassController.kt101 override fun isBypassEnabled() = bypassEnabled in <lambda>() method
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceEntryInteractorTest.kt325 assertThat(underTest.isBypassEnabled.value).isTrue() in <lambda>()
423 assertThat(underTest.isBypassEnabled.value).isFalse() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java797 return isHeadsUpState() && (isDozing() || (mOnKeyguard && isBypassEnabled()));
2755 if (mOnKeyguard && !isDozing() && !isBypassEnabled() &&
2763 private boolean isBypassEnabled() {

12