Home
last modified time | relevance | path

Searched refs:NotificationRankingUpdate (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/service/notification/
DNotificationRankingUpdate.java25 public class NotificationRankingUpdate implements Parcelable { class
35 public NotificationRankingUpdate(String[] keys, String[] interceptedKeys, in NotificationRankingUpdate() method in NotificationRankingUpdate
47 public NotificationRankingUpdate(Parcel in) { in NotificationRankingUpdate() method in NotificationRankingUpdate
74 public static final Parcelable.Creator<NotificationRankingUpdate> CREATOR
75 = new Parcelable.Creator<NotificationRankingUpdate>() {
76 public NotificationRankingUpdate createFromParcel(Parcel parcel) {
77 return new NotificationRankingUpdate(parcel);
80 public NotificationRankingUpdate[] newArray(int size) {
81 return new NotificationRankingUpdate[size];
DINotificationListener.aidl21 import android.service.notification.NotificationRankingUpdate;
27 void onListenerConnected(in NotificationRankingUpdate update); in onListenerConnected()
29 in NotificationRankingUpdate update); in onNotificationPosted()
31 in NotificationRankingUpdate update); in onNotificationRemoved()
32 void onNotificationRankingUpdate(in NotificationRankingUpdate update); in onNotificationRankingUpdate()
DNotificationListenerService.java867 NotificationRankingUpdate update) { in onNotificationPosted()
907 NotificationRankingUpdate update) { in onNotificationRemoved()
928 public void onListenerConnected(NotificationRankingUpdate update) { in onListenerConnected()
938 public void onNotificationRankingUpdate(NotificationRankingUpdate update) in onNotificationRankingUpdate()
991 private void applyUpdateLocked(NotificationRankingUpdate update) { in applyUpdateLocked()
1215 private final NotificationRankingUpdate mRankingUpdate;
1224 private RankingMap(NotificationRankingUpdate rankingUpdate) {
1407 NotificationRankingUpdate rankingUpdate = source.readParcelable(null);
DNotificationRankingUpdate.aidl19 parcelable NotificationRankingUpdate;
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java110 import android.service.notification.NotificationRankingUpdate;
3729 private NotificationRankingUpdate makeRankingUpdateLocked(ManagedServiceInfo info) { in makeRankingUpdateLocked()
3767 return new NotificationRankingUpdate(keysAr, interceptedKeysAr, visibilityOverrides, in makeRankingUpdateLocked()
3977 final NotificationRankingUpdate update; in onServiceAdded()
4027 final NotificationRankingUpdate update = makeRankingUpdateLocked(info); in notifyPostedLocked()
4063 final NotificationRankingUpdate update = makeRankingUpdateLocked(info); in notifyRemovedLocked()
4081 final NotificationRankingUpdate update = makeRankingUpdateLocked(serviceInfo); in notifyRankingUpdateLocked()
4120 final StatusBarNotification sbn, NotificationRankingUpdate rankingUpdate) { in notifyPosted()
4131 NotificationRankingUpdate rankingUpdate) { in notifyRemoved()
4145 NotificationRankingUpdate rankingUpdate) { in notifyRankingUpdate()
/frameworks/base/
Dcompiled-classes-phone3621 android.service.notification.NotificationRankingUpdate
3622 android.service.notification.NotificationRankingUpdate$1