Home
last modified time | relevance | path

Searched refs:doesHistoryExistForUser (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationHistoryManagerTest.java130 assertThat(mHistoryManager.doesHistoryExistForUser(USER_SYSTEM)).isFalse(); in testOnUserUnlocked()
133 assertThat(mHistoryManager.doesHistoryExistForUser(USER_SYSTEM)).isTrue(); in testOnUserUnlocked()
142 assertThat(mHistoryManager.doesHistoryExistForUser(USER_SYSTEM)).isTrue(); in testOnUserUnlocked_historyDisabled()
162 assertThat(mHistoryManager.doesHistoryExistForUser(USER_SYSTEM)).isTrue(); in testOnUserUnlocked_historyDisabled_withProfile()
164 assertThat(mHistoryManager.doesHistoryExistForUser(mProfileId)).isTrue(); in testOnUserUnlocked_historyDisabled_withProfile()
179 assertThat(mHistoryManager.doesHistoryExistForUser(mProfileId)).isFalse(); in testOnUserUnlocked_historyDisabled_withProfile()
187 assertThat(mHistoryManager.doesHistoryExistForUser(USER_SYSTEM)).isTrue(); in testOnUserUnlocked_historyDisabledThenEnabled()
205 assertThat(mHistoryManager.doesHistoryExistForUser(USER_SYSTEM)).isTrue(); in testOnUserUnlocked_historyDisabledThenEnabled()
213 assertThat(mHistoryManager.doesHistoryExistForUser(USER_SYSTEM)).isTrue(); in testOnUserUnlocked_historyDisabledThenEnabled_multiProfile()
215 assertThat(mHistoryManager.doesHistoryExistForUser(mProfileId)).isTrue(); in testOnUserUnlocked_historyDisabledThenEnabled_multiProfile()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationHistoryManager.java367 boolean doesHistoryExistForUser(@UserIdInt int userId) { in doesHistoryExistForUser() method in NotificationHistoryManager