Home
last modified time | relevance | path

Searched refs:showDeviceMonitoringDialog (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/footer/domain/interactor/
H A DFooterActionsInteractorTest.kt63 fun showDeviceMonitoringDialog() { regex
69 underTest.showDeviceMonitoringDialog(quickSettingsContext, null)
70 verify(qsSecurityFooterUtils).showDeviceMonitoringDialog(quickSettingsContext, null)
73 underTest.showDeviceMonitoringDialog(quickSettingsContext, expandable)
74 verify(qsSecurityFooterUtils).showDeviceMonitoringDialog(quickSettingsContext, expandable)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/footer/domain/interactor/
H A DFooterActionsInteractor.kt77 fun showDeviceMonitoringDialog(quickSettingsContext: Context, expandable: Expandable?) regex
134 override fun showDeviceMonitoringDialog(
138 qsSecurityFooterUtils.showDeviceMonitoringDialog(quickSettingsContext, expandable)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/footer/ui/viewmodel/
H A DFooterActionsViewModel.kt209 footerActionsInteractor.showDeviceMonitoringDialog(
221 footerActionsInteractor.showDeviceMonitoringDialog(quickSettingsContext, expandable)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/footer/ui/viewmodel/
H A DFooterActionsViewModelTest.kt362 whenever(qsSecurityFooterUtils.showDeviceMonitoringDialog(any(), nullable())).then {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
H A DQSSecurityFooterTest.java737 mFooterUtils.showDeviceMonitoringDialog(getContext(), expandable); in testFinancedDeviceUsesSettingsButtonText()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSSecurityFooterUtils.java195 public void showDeviceMonitoringDialog(Context quickSettingsContext, in showDeviceMonitoringDialog() method in QSSecurityFooterUtils