Home
last modified time | relevance | path

Searched refs:SHOW_NOTIFICATION_SNOOZE (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustmentProviderTest.kt22 import android.provider.Settings.Secure.SHOW_NOTIFICATION_SNOOZE
66 private val uri = FakeSettings().getUriFor(SHOW_NOTIFICATION_SNOOZE)
92 verify(secureSettings).getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any()) in setup()
95 .registerContentObserverForUserSync(eq(SHOW_NOTIFICATION_SNOOZE), capture(), any()) in setup()
136 verify(secureSettings).getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any()) in onChangeWillQueryThenNotifyDirty()
143 whenever(secureSettings.getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any())) in changingSnoozeChangesProvidedAdjustment()
148 whenever(secureSettings.getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any())) in changingSnoozeChangesProvidedAdjustment()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustmentProvider.kt24 import android.provider.Settings.Secure.SHOW_NOTIFICATION_SNOOZE
80 SHOW_NOTIFICATION_SNOOZE, in addDirtyListener()
118 secureSettings.getIntForUser(SHOW_NOTIFICATION_SNOOZE, 0, UserHandle.USER_CURRENT) == 1 in updateSnoozeEnabled()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DPreparationCoordinatorTest.java19 import static android.provider.Settings.Secure.SHOW_NOTIFICATION_SNOOZE;
319 when(mSecureSettings.getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), anyInt(), anyInt())) in testEntryCancellationWillRebindViews()
323 verify(mSecureSettings).registerContentObserverForUserSync(eq(SHOW_NOTIFICATION_SNOOZE), in testEntryCancellationWillRebindViews()
/frameworks/base/packages/SettingsProvider/src/android/provider/settings/backup/
DSecureSettings.java166 Settings.Secure.SHOW_NOTIFICATION_SNOOZE,
/frameworks/base/packages/SettingsProvider/src/android/provider/settings/validators/
DSecureSettingsValidators.java245 VALIDATORS.put(Secure.SHOW_NOTIFICATION_SNOOZE, BOOLEAN_VALIDATOR); in VALIDATORS.put() argument
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java2118 private final Uri SHOW_NOTIFICATION_SNOOZE field in NotificationManagerService.SettingsObserver
2119 = Secure.getUriFor(Secure.SHOW_NOTIFICATION_SNOOZE);
2143 resolver.registerContentObserver(SHOW_NOTIFICATION_SNOOZE, in observe()
2183 if (SHOW_NOTIFICATION_SNOOZE.equals(uri)) { in update()
2185 Secure.SHOW_NOTIFICATION_SNOOZE, 0, UserHandle.USER_CURRENT) in update()
/frameworks/base/core/java/android/provider/
DSettings.java10687 public static final String SHOW_NOTIFICATION_SNOOZE = "show_notification_snooze"; field in Settings.Secure
/frameworks/base/core/java/android/app/
DNotification.java6293 Settings.Secure.SHOW_NOTIFICATION_SNOOZE, 0, UserHandle.USER_CURRENT) == 1; in isSnoozeSettingEnabled()