Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/init/
DNotificationsControllerImpl.kt63 private val notificationListener: NotificationListener, constant in com.android.systemui.statusbar.notification.init.NotificationsControllerImpl
91 notificationListener.registerAsSystemService() in initialize()
113 notificationListener, in initialize()
132 entryManager.attach(notificationListener) in initialize()
135 peopleSpaceWidgetManager.attach(notificationListener) in initialize()
163 notificationListener.snoozeNotification(sbn.key, snoozeOption.snoozeCriterion.id) in setNotificationSnoozed()
165 notificationListener.snoozeNotification( in setNotificationSnoozed()
DNotificationsControllerStub.kt37 private val notificationListener: NotificationListener constant in com.android.systemui.statusbar.notification.init.NotificationsControllerStub
50 notificationListener.registerAsSystemService() in initialize()
/frameworks/base/media/java/android/media/session/
DMediaSessionManager.java193 @Nullable ComponentName notificationListener) { in getActiveSessions()
194 return getActiveSessionsForUser(notificationListener, UserHandle.myUserId()); in getActiveSessions()
255 @Nullable ComponentName notificationListener, @NonNull UserHandle userHandle) { in getActiveSessionsForUser()
257 return getActiveSessionsForUser(notificationListener, userHandle.getIdentifier()); in getActiveSessionsForUser()
260 private List<MediaController> getActiveSessionsForUser(ComponentName notificationListener, in getActiveSessionsForUser() argument
264 List<MediaSession.Token> tokens = mService.getSessions(notificationListener, in getActiveSessionsForUser()
309 @Nullable ComponentName notificationListener) { in addOnActiveSessionsChangedListener() argument
310 addOnActiveSessionsChangedListener(sessionListener, notificationListener, null); in addOnActiveSessionsChangedListener()
328 @Nullable ComponentName notificationListener, @Nullable Handler handler) { in addOnActiveSessionsChangedListener() argument
329 addOnActiveSessionsChangedListener(sessionListener, notificationListener, in addOnActiveSessionsChangedListener()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/notifications/
DTvNotificationHandler.java44 public TvNotificationHandler(Context context, NotificationListener notificationListener) { in TvNotificationHandler() argument
46 mNotificationListener = notificationListener; in TvNotificationHandler()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DHeadsUpController.java63 NotificationListener notificationListener) { in HeadsUpController() argument
70 mNotificationListener = notificationListener; in HeadsUpController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/
DTvSystemUIModule.java199 NotificationListener notificationListener) { in provideTvNotificationHandler() argument
200 return new TvNotificationHandler(context, notificationListener); in provideTvNotificationHandler()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/
DNotificationLoggerTest.java245 TestableNotificationLogger(NotificationListener notificationListener, in TestableNotificationLogger() argument
251 super(notificationListener, uiBgExecutor, entryManager, statusBarStateController, in TestableNotificationLogger()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/
DPeopleHubNotificationListener.kt98 private val notificationListener: NotificationListener, in extractPersonKey() constant
221 val clickRunnable = Runnable { notificationListener.unsnoozeNotification(key) } in extractPersonKey()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNonPhoneDependencyTest.java80 NotificationListener notificationListener = Dependency.get(NotificationListener.class); in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
DNotificationsModule.java187 NotificationListener notificationListener, in provideNotificationLogger() argument
194 notificationListener, in provideNotificationLogger()
/frameworks/base/services/people/java/com/android/server/people/data/
DDataManager.java632 NotificationListener notificationListener = new NotificationListener(userId); in setupUser() local
633 mNotificationListeners.put(userId, notificationListener); in setupUser()
635 notificationListener.registerAsSystemService(mContext, in setupUser()
813 NotificationListener notificationListener = mNotificationListeners.get(userId); in hasActiveNotifications() local
814 return notificationListener != null in hasActiveNotifications()
815 && notificationListener.hasActiveNotifications(packageName, shortcutId); in hasActiveNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java203 public NotificationLogger(NotificationListener notificationListener, in NotificationLogger() argument
209 mNotificationListener = notificationListener; in NotificationLogger()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationIconAreaController.java118 NotificationListener notificationListener, in NotificationIconAreaController() argument
139 notificationListener.addNotificationSettingsListener(mSettingsListener); in NotificationIconAreaController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationEntryManager.java221 public void attach(NotificationListener notificationListener) { in attach() argument
222 notificationListener.addNotificationHandler(mNotifListener); in attach()