Home
last modified time | relevance | path

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

12

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DKeyguardBypassControllerTest.kt58 private lateinit var keyguardBypassController: KeyguardBypassController
126 keyguardBypassController =
158 assertThat(keyguardBypassController.isPostureAllowedForFaceAuth()).isTrue()
167 assertThat(keyguardBypassController.isPostureAllowedForFaceAuth()).isTrue()
176 assertThat(keyguardBypassController.isPostureAllowedForFaceAuth()).isTrue()
185 assertThat(keyguardBypassController.isPostureAllowedForFaceAuth()).isFalse()
194 assertThat(keyguardBypassController.isPostureAllowedForFaceAuth()).isFalse()
203 assertThat(keyguardBypassController.isPostureAllowedForFaceAuth()).isFalse()
244 assertThat(keyguardBypassController.bypassEnabled).isFalse()
256 assertThat(keyguardBypassController.bypassEnabled).isTrue()
[all …]
H A DHeadsUpManagerPhoneTest.java83 KeyguardBypassController keyguardBypassController, in TestableHeadsUpManagerPhone() argument
94 keyguardBypassController, in TestableHeadsUpManagerPhone()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DCameraLauncher.java36 KeyguardBypassController keyguardBypassController in CameraLauncher() argument
39 mKeyguardBypassController = keyguardBypassController; in CameraLauncher()
H A DNotificationShadeWindowControllerImpl.java140 KeyguardBypassController keyguardBypassController, in NotificationShadeWindowControllerImpl() argument
158 mKeyguardBypassController = keyguardBypassController; in NotificationShadeWindowControllerImpl()
H A DQuickSettingsController.java330 KeyguardBypassController keyguardBypassController, in QuickSettingsController() argument
376 mKeyguardBypassController = keyguardBypassController; in QuickSettingsController()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DLegacyNotificationShelfControllerImpl.java47 KeyguardBypassController keyguardBypassController, in LegacyNotificationShelfControllerImpl() argument
52 mKeyguardBypassController = keyguardBypassController; in LegacyNotificationShelfControllerImpl()
H A DLockscreenShadeTransitionController.kt61 private val keyguardBypassController: KeyguardBypassController,
414 !keyguardBypassController.bypassEnabled &&
581 if (keyguardBypassController.bypassEnabled) {
681 val transitionHeight = if (keyguardBypassController.bypassEnabled) height else 0.0f
H A DNotificationMediaManager.java193 KeyguardBypassController keyguardBypassController, in NotificationMediaManager() argument
206 mKeyguardBypassController = keyguardBypassController; in NotificationMediaManager()
H A DKeyguardIndicationController.java269 KeyguardBypassController keyguardBypassController, in KeyguardIndicationController() argument
297 mKeyguardBypassController = keyguardBypassController; in KeyguardIndicationController()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarHeadsUpChangeListener.java52 KeyguardBypassController keyguardBypassController, in StatusBarHeadsUpChangeListener() argument
60 mKeyguardBypassController = keyguardBypassController; in StatusBarHeadsUpChangeListener()
H A DLegacyNotificationIconAreaControllerImpl.java134 KeyguardBypassController keyguardBypassController, in LegacyNotificationIconAreaControllerImpl() argument
155 mBypassController = keyguardBypassController; in LegacyNotificationIconAreaControllerImpl()
H A DBiometricUnlockController.java277 KeyguardBypassController keyguardBypassController, in BiometricUnlockController() argument
309 mKeyguardBypassController = keyguardBypassController; in BiometricUnlockController()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/icon/ui/viewbinder/
H A DNotificationIconAreaControllerViewBinderWrapperImplTest.kt57 @Mock private lateinit var keyguardBypassController: KeyguardBypassController
83 keyguardBypassController,
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/
H A DKeyguardRepositoryImplTest.kt83 @Mock private lateinit var keyguardBypassController: KeyguardBypassController
105 keyguardBypassController,
216 whenever(keyguardBypassController.isBypassEnabled).thenReturn(false)
217 whenever(keyguardBypassController.bypassEnabled).thenReturn(false)
223 whenever(keyguardBypassController.isBypassEnabled).thenReturn(true)
224 whenever(keyguardBypassController.bypassEnabled).thenReturn(true)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DLockscreenShadeTransitionControllerTest.kt83 @Mock lateinit var keyguardBypassController: KeyguardBypassController
143 keyguardBypassController = keyguardBypassController,
188 whenever(keyguardBypassController.bypassEnabled).thenReturn(false)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/lockscreen/
H A DLockscreenSmartspaceControllerTest.kt118 private lateinit var keyguardBypassController: KeyguardBypassController
246 keyguardBypassController,
430 `when`(keyguardBypassController.bypassEnabled).thenReturn(true)
794 verify(keyguardBypassController)
831 `when`(keyguardBypassController.bypassEnabled).thenReturn(true)
911 verify(keyguardBypassController)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowControllerTest.kt92 private val keyguardBypassController: KeyguardBypassController = mock()
131 keyguardBypassController,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/dagger/
H A DCentralSurfacesDependenciesModule.java142 KeyguardBypassController keyguardBypassController, in provideNotificationMediaManager() argument
159 keyguardBypassController, in provideNotificationMediaManager()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/domain/interactor/
H A DPrimaryBouncerInteractorWithCoroutinesTest.kt58 @Mock private lateinit var keyguardBypassController: KeyguardBypassController
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowController.java213 KeyguardBypassController keyguardBypassController, in ExpandableNotificationRowController() argument
241 mKeyguardBypassController = keyguardBypassController; in ExpandableNotificationRowController()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/ui/viewmodel/
H A DKeyguardBouncerViewModelTest.kt67 @Mock private lateinit var keyguardBypassController: KeyguardBypassController
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
H A DKeyguardRepository.kt254 private val keyguardBypassController: KeyguardBypassController,
520 return keyguardBypassController.bypassEnabled
H A DDeviceEntryFaceAuthRepository.kt145 private val keyguardBypassController: KeyguardBypassController? = null,
214 keyguardBypassController?.let {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFragment.java175 KeyguardBypassController keyguardBypassController, in QSFragment() argument
193 mBypassController = keyguardBypassController; in QSFragment()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java644 KeyguardBypassController keyguardBypassController, in NotificationStackScrollLayoutController() argument
695 mKeyguardBypassController = keyguardBypassController; in NotificationStackScrollLayoutController()

12