Home
last modified time | relevance | path

Searched refs:NotificationListenerController (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationListenerWithPlugins.java26 import com.android.systemui.plugins.NotificationListenerController;
27 import com.android.systemui.plugins.NotificationListenerController.NotificationProvider;
39 PluginListener<NotificationListenerController> {
41 private ArrayList<NotificationListenerController> mPlugins = new ArrayList<>();
49 NotificationListenerController.class); in registerAsSystemService()
61 for (NotificationListenerController plugin : mPlugins) { in getActiveNotifications()
70 for (NotificationListenerController plugin : mPlugins) { in getCurrentRanking()
87 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationPosted()
101 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationRemoved()
115 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationChannelModified()
[all …]
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DNotificationListenerController.java22 import com.android.systemui.plugins.NotificationListenerController.NotificationProvider;
26 @ProvidesInterface(action = NotificationListenerController.ACTION,
27 version = NotificationListenerController.VERSION)
29 public interface NotificationListenerController extends Plugin { interface