Home
last modified time | relevance | path

Searched refs:getAuthorizedPanels (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/panels/
DAuthorizedPanelsRepositoryImplTest.kt67 assertThat(repository.getAuthorizedPanels()).containsExactly(TEST_PACKAGE) in testPreApprovedPackagesAreSeededIfNoSavedPreferences()
97 assertThat(repository.getAuthorizedPanels()).containsExactly(TEST_PACKAGE) in testPreApprovedPackagesOnlySetForUserThatDoesntHaveThem()
99 assertThat(repository.getAuthorizedPanels()).isEmpty() in testPreApprovedPackagesOnlySetForUserThatDoesntHaveThem()
109 assertThat(repository.getAuthorizedPanels()).containsExactly(TEST_PACKAGE) in testGetAuthorizedPackages()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/panels/
DAuthorizedPanelsRepository.kt32 fun getAuthorizedPanels(): Set<String> method
DAuthorizedPanelsRepositoryImpl.kt46 override fun getAuthorizedPanels(): Set<String> { in getAuthorizedPanels() method in com.android.systemui.controls.panels.AuthorizedPanelsRepositoryImpl
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ui/
DControlsUiControllerImplTest.kt212 `when`(authorizedPanelsRepository.getAuthorizedPanels()).thenReturn(setOf(packageName)) in testPanelCallsTaskViewFactoryCreate()
232 `when`(authorizedPanelsRepository.getAuthorizedPanels()).thenReturn(setOf(packageName)) in testSingleAppHeaderIsNotClickable()
261 `when`(authorizedPanelsRepository.getAuthorizedPanels()) in testMultipleAppHeaderIsClickable()
283 `when`(authorizedPanelsRepository.getAuthorizedPanels()).thenReturn(setOf(packageName)) in testPanelControllerStartActivityWithCorrectArguments()
321 `when`(authorizedPanelsRepository.getAuthorizedPanels()).thenReturn(setOf(packageName)) in testPanelControllerStartActivityWithHomePanelDreamEnabled()
358 `when`(authorizedPanelsRepository.getAuthorizedPanels()).thenReturn(setOf(packageName)) in testPendingIntentExtrasAreModified()
540 `when`(authorizedPanelsRepository.getAuthorizedPanels()).thenReturn(setOf(packageName)) in testOnRotationWithPanelUpdateBoundsCalled()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
DControlsProviderSelectorActivity.kt150 authorizedPanelsRepository.getAuthorizedPanels() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
DControlsUiControllerImpl.kt178 val authorizedPanels = authorizedPanelsRepository.getAuthorizedPanels() in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/controller/
DControlsControllerImplTest.kt153 whenever(authorizedPanelsRepository.getAuthorizedPanels()).thenReturn(setOf()) in <lambda>()