Home
last modified time | relevance | path

Searched refs:NOTIFICATION_HISTORY_ENABLED (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationHistoryManagerTest.java123 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 1, info.id); in setUp()
148 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, USER_SYSTEM); in testOnUserUnlocked_historyDisabled()
171 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, USER_SYSTEM); in testOnUserUnlocked_historyDisabled_withProfile()
194 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, USER_SYSTEM); in testOnUserUnlocked_historyDisabledThenEnabled()
199 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 1, USER_SYSTEM); in testOnUserUnlocked_historyDisabledThenEnabled()
223 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, USER_SYSTEM); in testOnUserUnlocked_historyDisabledThenEnabled_multiProfile()
228 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 1, USER_SYSTEM); in testOnUserUnlocked_historyDisabledThenEnabled_multiProfile()
325 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, USER_SYSTEM); in testOnPackageRemoved_historyDisabled()
432 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, USER_SYSTEM); in testTriggerWriteToDisk_historyDisabled()
531 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, USER_SYSTEM); in testReadNotificationHistory_historyDisabled()
[all …]
/aosp12/packages/apps/Settings/src/com/android/settings/notification/history/
H A DNotificationHistoryActivity.java19 import static android.provider.Settings.Secure.NOTIFICATION_HISTORY_ENABLED;
332 NOTIFICATION_HISTORY_ENABLED, 0) == 1); in bindSwitch() local
354 NOTIFICATION_HISTORY_ENABLED);
360 NOTIFICATION_HISTORY_ENABLED, newState);
/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationHistoryManager.java369 = Settings.Secure.getUriFor(Settings.Secure.NOTIFICATION_HISTORY_ENABLED);
402 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, userId) in update()
H A DNotificationManagerService.java1805 private final Uri NOTIFICATION_HISTORY_ENABLED field in NotificationManagerService.SettingsObserver
1806 = Settings.Secure.getUriFor(Settings.Secure.NOTIFICATION_HISTORY_ENABLED);
1829 resolver.registerContentObserver(NOTIFICATION_HISTORY_ENABLED, in observe()
1866 if (uri == null || NOTIFICATION_HISTORY_ENABLED.equals(uri)) { in update()
1872 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, in update()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutTest.java19 import static android.provider.Settings.Secure.NOTIFICATION_HISTORY_ENABLED;
114 Settings.Secure.putIntForUser(mContext.getContentResolver(), NOTIFICATION_HISTORY_ENABLED, in setUp() local
/aosp12/frameworks/base/packages/SettingsProvider/src/android/provider/settings/backup/
H A DSecureSettings.java136 Settings.Secure.NOTIFICATION_HISTORY_ENABLED,
/aosp12/frameworks/base/packages/SettingsProvider/src/android/provider/settings/validators/
H A DSecureSettingsValidators.java201 VALIDATORS.put(Secure.NOTIFICATION_HISTORY_ENABLED, BOOLEAN_VALIDATOR); in VALIDATORS.put() argument
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java786 case Settings.Secure.NOTIFICATION_HISTORY_ENABLED: in attach()
795 Settings.Secure.NOTIFICATION_HISTORY_ENABLED); in attach()
H A DNotificationStackScrollLayout.java691 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, UserHandle.USER_CURRENT) == 1; in updateFooter()
5194 Settings.Secure.NOTIFICATION_HISTORY_ENABLED, 0, UserHandle.USER_CURRENT) == 1; in inflateEmptyShadeView()
/aosp12/frameworks/base/core/java/android/provider/
H A DSettings.java9707 public static final String NOTIFICATION_HISTORY_ENABLED = "notification_history_enabled"; field in Settings.Secure