Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationEntryManager.java41 import com.android.systemui.statusbar.NotificationLifetimeExtender;
129 private final Map<NotificationEntry, NotificationLifetimeExtender> mRetainedNotifications =
151 final ArrayList<NotificationLifetimeExtender> mNotificationLifetimeExtenders
182 for (NotificationLifetimeExtender extender : mNotificationLifetimeExtenders) { in dump()
189 for (Map.Entry<NotificationEntry, NotificationLifetimeExtender> entry in dump()
257 public void addNotificationLifetimeExtenders(List<NotificationLifetimeExtender> extenders) { in addNotificationLifetimeExtenders()
258 for (NotificationLifetimeExtender extender : extenders) { in addNotificationLifetimeExtenders()
264 public void addNotificationLifetimeExtender(NotificationLifetimeExtender extender) { in addNotificationLifetimeExtender()
478 for (NotificationLifetimeExtender extender : mNotificationLifetimeExtenders) { in removeNotificationInternal()
497 for (NotificationLifetimeExtender extender : mNotificationLifetimeExtenders) { in removeNotificationInternal()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationEntryManagerTest.java68 import com.android.systemui.statusbar.NotificationLifetimeExtender;
419 NotificationLifetimeExtender extender = mock(NotificationLifetimeExtender.class); in testLifetimeExtenders_ifNotificationIsRetainedItIsntRemoved()
457 NotificationLifetimeExtender extender = mock(NotificationLifetimeExtender.class); in testLifetimeExtenders_whenNotificationUpdatedRetainersAreCanceled()
476 NotificationLifetimeExtender extender1 = mock(NotificationLifetimeExtender.class); in testLifetimeExtenders_whenNewExtenderTakesPrecedenceOldExtenderIsCanceled()
478 NotificationLifetimeExtender extender2 = mock(NotificationLifetimeExtender.class); in testLifetimeExtenders_whenNewExtenderTakesPrecedenceOldExtenderIsCanceled()
637 private static class FakeNotificationLifetimeExtender implements NotificationLifetimeExtender {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationLifetimeExtender.java12 public interface NotificationLifetimeExtender { interface
DNotificationRemoteInputManager.java131 protected NotificationLifetimeExtender.NotificationSafeToRemoveCallback
135 protected final ArrayList<NotificationLifetimeExtender> mLifetimeExtenders = new ArrayList<>();
560 public ArrayList<NotificationLifetimeExtender> getLifetimeExtenders() { in getLifetimeExtenders()
720 protected abstract class RemoteInputExtender implements NotificationLifetimeExtender {
DAlertingNotificationManager.java40 public abstract class AlertingNotificationManager implements NotificationLifetimeExtender {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationRemoteInputManagerTest.java100 for (NotificationLifetimeExtender extender : mRemoteInputManager.getLifetimeExtenders()) { in setUp()
102 mock(NotificationLifetimeExtender.NotificationSafeToRemoveCallback.class)); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManager.java57 import com.android.systemui.statusbar.NotificationLifetimeExtender;
85 public class NotificationGutsManager implements Dumpable, NotificationLifetimeExtender {