Home
last modified time | relevance | path

Searched refs:NotifLifetimeExtender (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
DNotifLifetimeExtender.java27 public interface NotifLifetimeExtender { interface
58 void onEndLifetimeExtension(NotifLifetimeExtender extender, NotificationEntry entry); in onEndLifetimeExtension()
DNotifCollectionLogger.kt157 fun logLifetimeExtended(key: String, extender: NotifLifetimeExtender) { in logLifetimeExtended()
168 extender: NotifLifetimeExtender, in logLifetimeExtensionEnded()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DHeadsUpCoordinatorTest.java41 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
65 private NotifLifetimeExtender mNotifLifetimeExtender;
75 @Mock private NotifLifetimeExtender.OnEndLifetimeExtensionCallback mEndLifetimeExtension;
98 ArgumentCaptor<NotifLifetimeExtender> notifLifetimeExtenderCaptor = in setUp()
99 ArgumentCaptor.forClass(NotifLifetimeExtender.class); in setUp()
DAppOpsCoordinatorTest.java47 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
77 private NotifLifetimeExtender mForegroundNotifLifetimeExtender;
107 ArgumentCaptor<NotifLifetimeExtender> lifetimeExtenderCaptor = in setup()
108 ArgumentCaptor.forClass(NotifLifetimeExtender.class); in setup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DHeadsUpCoordinator.java31 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
68 private NotifLifetimeExtender.OnEndLifetimeExtensionCallback mEndLifetimeExtension;
160 private final NotifLifetimeExtender mLifetimeExtender = new NotifLifetimeExtender() {
DAppOpsCoordinator.java31 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
124 private final NotifLifetimeExtender mForegroundLifetimeExtender =
125 new NotifLifetimeExtender() {
DNotifCoordinators.java26 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotifPipeline.java30 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
104 public void addNotificationLifetimeExtender(NotifLifetimeExtender extender) { in addNotificationLifetimeExtender()
DNotifCollection.java80 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
140 private final List<NotifLifetimeExtender> mLifetimeExtenders = new ArrayList<>();
200 void addNotificationLifetimeExtender(NotifLifetimeExtender extender) { in addNotificationLifetimeExtender()
522 private void onEndLifetimeExtension(NotifLifetimeExtender extender, NotificationEntry entry) { in onEndLifetimeExtension()
551 for (NotifLifetimeExtender extender : entry.mLifetimeExtenders) { in cancelLifetimeExtension()
565 for (NotifLifetimeExtender extender : mLifetimeExtenders) { in updateLifetimeExtension()
DNotificationEntry.java67 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
106 final List<NotifLifetimeExtender> mLifetimeExtenders = new ArrayList<>();
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DNotifCollectionTest.java82 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
1386 private static class RecordingLifetimeExtender implements NotifLifetimeExtender {