Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DGutsCoordinator.kt25 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
26 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
78 private val mLifetimeExtender: NotifLifetimeExtender = object : NotifLifetimeExtender {
H A DHeadsUpCoordinator.java33 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
73 private NotifLifetimeExtender.OnEndLifetimeExtensionCallback mEndLifetimeExtension;
166 private final NotifLifetimeExtender mLifetimeExtender = new NotifLifetimeExtender() {
H A DRemoteInputCoordinator.kt38 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
88 fun getLifetimeExtenders(): List<NotifLifetimeExtender> = mRemoteInputLifetimeExtenders
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DHeadsUpCoordinatorTest.java40 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
65 private NotifLifetimeExtender mNotifLifetimeExtender;
74 @Mock private NotifLifetimeExtender.OnEndLifetimeExtensionCallback mEndLifetimeExtension;
97 ArgumentCaptor<NotifLifetimeExtender> notifLifetimeExtenderCaptor = in setUp()
98 ArgumentCaptor.forClass(NotifLifetimeExtender.class); in setUp()
H A DGutsCoordinatorTest.kt26 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
27 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
46 private lateinit var notifLifetimeExtender: NotifLifetimeExtender
63 notifLifetimeExtender = argumentCaptor<NotifLifetimeExtender>().let {
H A DRemoteInputCoordinatorTest.kt34 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
35 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
80 (it.arguments[0] as NotifLifetimeExtender).setCallback(lifetimeExtensionCallback)
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
H A DSelfTrackingLifetimeExtender.kt20 ) : NotifLifetimeExtender, Dumpable {
21 private lateinit var mCallback: NotifLifetimeExtender.OnEndLifetimeExtensionCallback
104 final override fun setCallback(callback: NotifLifetimeExtender.OnEndLifetimeExtensionCallback) {
H A DNotifLifetimeExtender.java29 public interface NotifLifetimeExtender { interface
65 @NonNull NotifLifetimeExtender extender, in onEndLifetimeExtension()
H A DNotifCollectionLogger.kt177 fun logLifetimeExtended(key: String, extender: NotifLifetimeExtender) {
188 extender: NotifLifetimeExtender,
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotifPipeline.java38 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
120 public void addNotificationLifetimeExtender(NotifLifetimeExtender extender) { in addNotificationLifetimeExtender()
H A DNotifCollection.java86 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
146 private final List<NotifLifetimeExtender> mLifetimeExtenders = new ArrayList<>();
213 void addNotificationLifetimeExtender(NotifLifetimeExtender extender) { in addNotificationLifetimeExtender()
536 @NonNull NotifLifetimeExtender extender, in onEndLifetimeExtension()
566 for (NotifLifetimeExtender extender : entry.mLifetimeExtenders) { in cancelLifetimeExtension()
580 for (NotifLifetimeExtender extender : mLifetimeExtenders) { in updateLifetimeExtension()
H A DNotificationEntry.java68 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
105 final List<NotifLifetimeExtender> mLifetimeExtenders = new ArrayList<>();
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/notifcollection/
H A DSelfTrackingLifetimeExtenderTest.kt25 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
H A DNotifCollectionTest.java86 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifLifetimeExtender;
1480 private static class RecordingLifetimeExtender implements NotifLifetimeExtender {