/frameworks/base/core/java/android/app/ |
D | NotificationChannelGroup.java | 38 public final class NotificationChannelGroup implements Parcelable { class 68 public NotificationChannelGroup(String id, CharSequence name) { in NotificationChannelGroup() method in NotificationChannelGroup 76 protected NotificationChannelGroup(Parcel in) { in NotificationChannelGroup() method in NotificationChannelGroup 234 public static final Creator<NotificationChannelGroup> CREATOR = 235 new Creator<NotificationChannelGroup>() { 237 public NotificationChannelGroup createFromParcel(Parcel in) { 238 return new NotificationChannelGroup(in); 242 public NotificationChannelGroup[] newArray(int size) { 243 return new NotificationChannelGroup[size]; 257 NotificationChannelGroup that = (NotificationChannelGroup) o; in equals() [all …]
|
D | INotificationManager.aidl | 23 import android.app.NotificationChannelGroup; 72 …NotificationChannelGroup getNotificationChannelGroupForPackage(String groupId, String pkg, int uid… in getNotificationChannelGroupForPackage() 73 …NotificationChannelGroup getPopulatedNotificationChannelGroupForPackage(String pkg, int uid, Strin… in getPopulatedNotificationChannelGroupForPackage() 74 …void updateNotificationChannelGroupForPackage(String pkg, int uid, in NotificationChannelGroup gro… in updateNotificationChannelGroupForPackage() 85 NotificationChannelGroup getNotificationChannelGroup(String pkg, String channelGroupId); in getNotificationChannelGroup() 122 …in INotificationListener token, String pkg, in UserHandle user, in NotificationChannelGroup group); in updateNotificationChannelGroupFromPrivilegedListener()
|
D | NotificationChannelGroup.aidl | 19 parcelable NotificationChannelGroup;
|
D | NotificationManager.java | 486 public void createNotificationChannelGroup(@NonNull NotificationChannelGroup group) { in createNotificationChannelGroup() 495 public void createNotificationChannelGroups(@NonNull List<NotificationChannelGroup> groups) { in createNotificationChannelGroups() 595 public NotificationChannelGroup getNotificationChannelGroup(String channelGroupId) { in getNotificationChannelGroup() 607 public List<NotificationChannelGroup> getNotificationChannelGroups() { in getNotificationChannelGroups()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | RankingConfig.java | 19 import android.app.NotificationChannelGroup; 34 Collection<NotificationChannelGroup> getNotificationChannelGroups(String pkg, in getNotificationChannelGroups() 36 void createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group, in createNotificationChannelGroup() 38 ParceledListSlice<NotificationChannelGroup> getNotificationChannelGroups(String pkg, in getNotificationChannelGroups()
|
D | RankingHelper.java | 24 import android.app.NotificationChannelGroup; 248 NotificationChannelGroup group in readXml() 249 = new NotificationChannelGroup(id, groupName); in readXml() 431 for (NotificationChannelGroup group : r.groups.values()) { in writeXml() 560 NotificationChannelGroup group = r.groups.get(groupId); in isGroupBlocked() 576 public void createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group, in createNotificationChannelGroup() 586 final NotificationChannelGroup oldGroup = r.groups.get(group.getId()); in createNotificationChannelGroup() 800 public NotificationChannelGroup getNotificationChannelGroupWithChannels(String pkg, in getNotificationChannelGroupWithChannels() 807 NotificationChannelGroup group = r.groups.get(groupId).clone(); in getNotificationChannelGroupWithChannels() 821 public NotificationChannelGroup getNotificationChannelGroup(String groupId, String pkg, in getNotificationChannelGroup() [all …]
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | RankingHelperTest.java | 46 import android.app.NotificationChannelGroup; 286 private void compareGroups(NotificationChannelGroup expected, NotificationChannelGroup actual) { in compareGroups() 363 NotificationChannelGroup ncg = new NotificationChannelGroup("1", "bye"); in testChannelXml() 366 NotificationChannelGroup ncg2 = new NotificationChannelGroup("2", "hello"); in testChannelXml() 401 List<NotificationChannelGroup> actualGroups = in testChannelXml() 404 for (NotificationChannelGroup actual : actualGroups) { in testChannelXml() 415 for (NotificationChannelGroup actual : actualGroups) { in testChannelXml() 426 NotificationChannelGroup ncg = new NotificationChannelGroup("1", "bye"); in testChannelXmlForBackup() 427 NotificationChannelGroup ncg2 = new NotificationChannelGroup("2", "hello"); in testChannelXmlForBackup() 471 List<NotificationChannelGroup> actualGroups = in testChannelXmlForBackup() [all …]
|
/frameworks/base/core/java/android/service/notification/ |
D | INotificationListener.aidl | 20 import android.app.NotificationChannelGroup; 43 …ChannelGroupModification(String pkgName, in UserHandle user, in NotificationChannelGroup group, in… in onNotificationChannelGroupModification()
|
D | NotificationListenerService.java | 29 import android.app.NotificationChannelGroup; 494 NotificationChannelGroup group, @ChannelOrGroupModificationTypes int modificationType) { in onNotificationChannelGroupModified() 757 public final List<NotificationChannelGroup> getNotificationChannelGroups(@NonNull String pkg, in getNotificationChannelGroups() 1348 NotificationChannelGroup group, in onNotificationChannelGroupModification() 2030 NotificationChannelGroup group = (NotificationChannelGroup) args.arg3; in handleMessage()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AlertWindowNotification.java | 28 import android.app.NotificationChannelGroup; 51 private static NotificationChannelGroup sChannelGroup; 149 sChannelGroup = new NotificationChannelGroup(CHANNEL_PREFIX, in createNotificationChannel()
|
/frameworks/base/core/proto/android/app/ |
D | notification_channel_group.proto | 27 * An android.app.NotificationChannelGroup object.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationInfo.java | 30 import android.app.NotificationChannelGroup; 229 final NotificationChannelGroup notificationChannelGroup = in bindHeader()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationInfoTest.java | 49 import android.app.NotificationChannelGroup; 200 final NotificationChannelGroup notificationChannelGroup = in testBindNotification_SetsGroupNameIfNonNull() 201 new NotificationChannelGroup("test_group_id", "Test Group Name"); in testBindNotification_SetsGroupNameIfNonNull()
|
/frameworks/base/api/ |
D | test-current.txt | 118 public final class NotificationChannelGroup implements android.os.Parcelable {
|
D | system-current.txt | 381 public final class NotificationChannelGroup implements android.os.Parcelable {
|
D | current.txt | 5656 public final class NotificationChannelGroup implements android.os.Parcelable { 5657 ctor public NotificationChannelGroup(java.lang.String, java.lang.CharSequence); 5658 method public android.app.NotificationChannelGroup clone(); 5667 …field public static final android.os.Parcelable.Creator<android.app.NotificationChannelGroup> CREA… 5677 method public void createNotificationChannelGroup(android.app.NotificationChannelGroup); 5678 … public void createNotificationChannelGroups(java.util.List<android.app.NotificationChannelGroup>); 5688 … method public android.app.NotificationChannelGroup getNotificationChannelGroup(java.lang.String); 5689 … method public java.util.List<android.app.NotificationChannelGroup> getNotificationChannelGroups(); 39338 …method public final java.util.List<android.app.NotificationChannelGroup> getNotificationChannelGro… 39346 …lGroupModified(java.lang.String, android.os.UserHandle, android.app.NotificationChannelGroup, int);
|
/frameworks/base/config/ |
D | preloaded-classes | 305 android.app.NotificationChannelGroup 306 android.app.NotificationChannelGroup$1
|
D | boot-image-profile.txt | 808 HPLandroid/app/NotificationChannelGroup;->addChannel(Landroid/app/NotificationChannel;)V 809 HPLandroid/app/NotificationChannelGroup;->clone()Landroid/app/NotificationChannelGroup; 810 HPLandroid/app/NotificationChannelGroup;->equals(Ljava/lang/Object;)Z 811 HPLandroid/app/NotificationChannelGroup;->toJson()Lorg/json/JSONObject; 14531 …otificationChannelGroup(Ljava/lang/String;Ljava/lang/String;)Landroid/app/NotificationChannelGroup; 14532 …ChannelGroupForPackage(Ljava/lang/String;Ljava/lang/String;I)Landroid/app/NotificationChannelGroup; 14542 …hannelGroupForPackage(Ljava/lang/String;ILjava/lang/String;Z)Landroid/app/NotificationChannelGroup; 14588 …pdateNotificationChannelGroupForPackage(Ljava/lang/String;ILandroid/app/NotificationChannelGroup;)V 14589 …ificationListener;Ljava/lang/String;Landroid/os/UserHandle;Landroid/app/NotificationChannelGroup;)V 14980 HSPLandroid/app/NotificationChannelGroup$1;-><init>()V [all …]
|
D | hiddenapi-public-dex.txt | 3884 Landroid/app/NotificationChannelGroup; 3885 Landroid/app/NotificationChannelGroup;-><init>(Ljava/lang/String;Ljava/lang/CharSequence;)V 3886 Landroid/app/NotificationChannelGroup;->clone()Landroid/app/NotificationChannelGroup; 3887 Landroid/app/NotificationChannelGroup;->CREATOR:Landroid/os/Parcelable$Creator; 3888 Landroid/app/NotificationChannelGroup;->describeContents()I 3889 Landroid/app/NotificationChannelGroup;->equals(Ljava/lang/Object;)Z 3890 Landroid/app/NotificationChannelGroup;->getChannels()Ljava/util/List; 3891 Landroid/app/NotificationChannelGroup;->getDescription()Ljava/lang/String; 3892 Landroid/app/NotificationChannelGroup;->getId()Ljava/lang/String; 3893 Landroid/app/NotificationChannelGroup;->getName()Ljava/lang/CharSequence; [all …]
|
D | hiddenapi-light-greylist.txt | 859 Landroid/app/NotificationChannelGroup;->mId:Ljava/lang/String;
|
/frameworks/base/services/ |
D | art-profile | 933 …onfig;->createNotificationChannelGroup(Ljava/lang/String;ILandroid/app/NotificationChannelGroup;Z)V
|