Home
last modified time | relevance | path

Searched refs:NotificationChannelGroup (Results 1 – 25 of 35) sorted by relevance

12

/frameworks/base/core/java/android/app/
DNotificationChannelGroup.java40 public final class NotificationChannelGroup implements Parcelable { class
82 public NotificationChannelGroup(String id, CharSequence name) { in NotificationChannelGroup() method in NotificationChannelGroup
90 protected NotificationChannelGroup(Parcel in) { in NotificationChannelGroup() method in NotificationChannelGroup
275 public static final @android.annotation.NonNull Creator<NotificationChannelGroup> CREATOR =
276 new Creator<NotificationChannelGroup>() {
278 public NotificationChannelGroup createFromParcel(Parcel in) {
279 return new NotificationChannelGroup(in);
283 public NotificationChannelGroup[] newArray(int size) {
284 return new NotificationChannelGroup[size];
297 NotificationChannelGroup that = (NotificationChannelGroup) o; in equals()
[all …]
DINotificationManager.aidl24 import android.app.NotificationChannelGroup;
95NotificationChannelGroup getNotificationChannelGroupForPackage(String groupId, String pkg, int uid… in getNotificationChannelGroupForPackage()
96NotificationChannelGroup getPopulatedNotificationChannelGroupForPackage(String pkg, int uid, Strin… in getPopulatedNotificationChannelGroupForPackage()
97 …void updateNotificationChannelGroupForPackage(String pkg, int uid, in NotificationChannelGroup gro… in updateNotificationChannelGroupForPackage()
111 NotificationChannelGroup getNotificationChannelGroup(String pkg, String channelGroupId); in getNotificationChannelGroup()
162 …in INotificationListener token, String pkg, in UserHandle user, in NotificationChannelGroup group); in updateNotificationChannelGroupFromPrivilegedListener()
DNotificationChannelGroup.aidl19 parcelable NotificationChannelGroup;
DNotificationManager.java777 public void createNotificationChannelGroup(@NonNull NotificationChannelGroup group) { in createNotificationChannelGroup()
786 public void createNotificationChannelGroups(@NonNull List<NotificationChannelGroup> groups) { in createNotificationChannelGroups()
917 public NotificationChannelGroup getNotificationChannelGroup(String channelGroupId) { in getNotificationChannelGroup()
929 public List<NotificationChannelGroup> getNotificationChannelGroups() { in getNotificationChannelGroups()
932 final ParceledListSlice<NotificationChannelGroup> parceledList = in getNotificationChannelGroups()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationChannelLogger.java23 import android.app.NotificationChannelGroup;
86 default void logNotificationChannelGroup(@NonNull NotificationChannelGroup channelGroup, in logNotificationChannelGroup()
98 default void logNotificationChannelGroupDeleted(@NonNull NotificationChannelGroup channelGroup, in logNotificationChannelGroupDeleted()
136 @NonNull NotificationChannelGroup channelGroup, int uid, String pkg, in logNotificationChannelGroup()
220 static int getIdHash(@NonNull NotificationChannelGroup group) { in getIdHash()
248 static int getImportance(@NonNull NotificationChannelGroup channelGroup) { in getImportance()
DRankingConfig.java19 import android.app.NotificationChannelGroup;
38 Collection<NotificationChannelGroup> getNotificationChannelGroups(String pkg, in getNotificationChannelGroups()
40 void createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group, in createNotificationChannelGroup()
42 ParceledListSlice<NotificationChannelGroup> getNotificationChannelGroups(String pkg, in getNotificationChannelGroups()
DNotificationChannelLoggerImpl.java20 import android.app.NotificationChannelGroup;
49 NotificationChannelGroup channelGroup, int uid, String pkg, boolean wasBlocked) { in logNotificationChannelGroup()
DPreferencesHelper.java38 import android.app.NotificationChannelGroup;
287 NotificationChannelGroup group in readXml()
288 = new NotificationChannelGroup(id, groupName); in readXml()
560 for (NotificationChannelGroup group : r.groups.values()) { in writeXml()
730 NotificationChannelGroup group = r.groups.get(groupId); in isGroupBlocked()
751 public void createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group, in createNotificationChannelGroup()
762 final NotificationChannelGroup oldGroup = r.groups.get(group.getId()); in createNotificationChannelGroup()
774 group.lockFields(NotificationChannelGroup.USER_LOCKED_BLOCKED_STATE); in createNotificationChannelGroup()
1203 public NotificationChannelGroup getNotificationChannelGroupWithChannels(String pkg, in getNotificationChannelGroupWithChannels()
1211 NotificationChannelGroup group = r.groups.get(groupId).clone(); in getNotificationChannelGroupWithChannels()
[all …]
DNotificationManagerService.java127 import android.app.NotificationChannelGroup;
2447 private void createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group,
2452 final NotificationChannelGroup preUpdate =
2467 NotificationChannelGroup preUpdate, NotificationChannelGroup update) {
3274 NotificationChannelGroup group) throws RemoteException {
3284 List<NotificationChannelGroup> groups = channelGroupList.getList();
3287 final NotificationChannelGroup group = groups.get(i);
3426 public NotificationChannelGroup getNotificationChannelGroup(String pkg, String groupId) {
3433 public ParceledListSlice<NotificationChannelGroup> getNotificationChannelGroups(
3445 NotificationChannelGroup groupToDelete =
[all …]
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DPreferencesHelperTest.java70 import android.app.NotificationChannelGroup;
291 private void compareGroups(NotificationChannelGroup expected, NotificationChannelGroup actual) { in compareGroups()
381 NotificationChannelGroup ncg = new NotificationChannelGroup("1", "bye"); in testChannelXml()
384 NotificationChannelGroup ncg2 = new NotificationChannelGroup("2", "hello"); in testChannelXml()
424 List<NotificationChannelGroup> actualGroups = mHelper.getNotificationChannelGroups( in testChannelXml()
427 for (NotificationChannelGroup actual : actualGroups) { in testChannelXml()
438 for (NotificationChannelGroup actual : actualGroups) { in testChannelXml()
449 NotificationChannelGroup ncg = new NotificationChannelGroup("1", "bye"); in testChannelXmlForBackup()
450 NotificationChannelGroup ncg2 = new NotificationChannelGroup("2", "hello"); in testChannelXmlForBackup()
503 List<NotificationChannelGroup> actualGroups = mHelper.getNotificationChannelGroups( in testChannelXmlForBackup()
[all …]
DNotificationChannelLoggerFake.java20 import android.app.NotificationChannelGroup;
51 NotificationChannelGroup channelGroup, int uid, String pkg, boolean wasBlocked) { in logNotificationChannelGroup()
DNotificationManagerServiceTest.java96 import android.app.NotificationChannelGroup;
2147 NotificationChannelGroup existing = new NotificationChannelGroup("id", "name"); in testUpdateGroupNotifyCreatorBlock()
2153 NotificationChannelGroup updated = new NotificationChannelGroup("id", "name"); in testUpdateGroupNotifyCreatorBlock()
2170 NotificationChannelGroup existing = new NotificationChannelGroup("id", "name"); in testUpdateGroupNotifyCreatorUnblock()
2178 PKG, 0, new NotificationChannelGroup("id", "name")); in testUpdateGroupNotifyCreatorUnblock()
2192 NotificationChannelGroup existing = new NotificationChannelGroup("id", "name"); in testUpdateGroupNoNotifyCreatorOtherChanges()
2199 PKG, 0, new NotificationChannelGroup("id", "new name")); in testUpdateGroupNoNotifyCreatorOtherChanges()
2239 NotificationChannelGroup group1 = new NotificationChannelGroup("a", "b"); in testCreateChannelGroupNotifyListener()
2240 NotificationChannelGroup group2 = new NotificationChannelGroup("n", "m"); in testCreateChannelGroupNotifyListener()
2295 NotificationChannelGroup ncg = new NotificationChannelGroup("a", "b/c"); in testDeleteChannelGroupNotifyListener()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DChannelEditorDialogController.kt23 import android.app.NotificationChannelGroup in <lambda>()
95 private val channelGroupList = mutableListOf<NotificationChannelGroup>() in <lambda>()
158 groupList: Sequence<NotificationChannelGroup> in <lambda>()
234 private fun fetchNotificationChannelGroups(): List<NotificationChannelGroup> { in <lambda>()
237 .list as? List<NotificationChannelGroup> ?: listOf() in <lambda>()
DPartialConversationInfo.java27 import android.app.NotificationChannelGroup;
220 final NotificationChannelGroup notificationChannelGroup =
DNotificationConversationInfo.java37 import android.app.NotificationChannelGroup;
368 final NotificationChannelGroup notificationChannelGroup = in bindGroup()
DNotificationInfo.java32 import android.app.NotificationChannelGroup;
375 final NotificationChannelGroup notificationChannelGroup =
/frameworks/base/core/java/android/service/notification/
DINotificationListener.aidl21 import android.app.NotificationChannelGroup;
46 …ChannelGroupModification(String pkgName, in UserHandle user, in NotificationChannelGroup group, in… in onNotificationChannelGroupModification()
DNotificationListenerService.java31 import android.app.NotificationChannelGroup;
542 NotificationChannelGroup group, @ChannelOrGroupModificationTypes int modificationType) { in onNotificationChannelGroupModified()
808 public final List<NotificationChannelGroup> getNotificationChannelGroups(@NonNull String pkg, in getNotificationChannelGroups()
1477 NotificationChannelGroup group, in onNotificationChannelGroupModification()
2176 NotificationChannelGroup group = (NotificationChannelGroup) args.arg3;
/frameworks/base/services/core/java/com/android/server/wm/
DAlertWindowNotification.java29 import android.app.NotificationChannelGroup;
50 private static NotificationChannelGroup sChannelGroup;
149 sChannelGroup = new NotificationChannelGroup(CHANNEL_PREFIX, in createNotificationChannel()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DChannelEditorDialogControllerTest.kt21 import android.app.NotificationChannelGroup
58 private lateinit var group: NotificationChannelGroup
80 group = NotificationChannelGroup(TEST_GROUP_ID, TEST_GROUP_NAME) in setup()
DNotificationInfoTest.java47 import android.app.NotificationChannelGroup;
301 final NotificationChannelGroup notificationChannelGroup = in testBindNotification_SetsGroupNameIfNonNull()
302 new NotificationChannelGroup("test_group_id", "Test Group Name"); in testBindNotification_SetsGroupNameIfNonNull()
DNotificationConversationInfoTest.java50 import android.app.NotificationChannelGroup;
312 NotificationChannelGroup group = new NotificationChannelGroup("id", "name"); in testBindNotification_SetsTextGroupName()
DPartialConversationInfoTest.java39 import android.app.NotificationChannelGroup;
/frameworks/base/core/proto/android/app/
Dnotification_channel_group.proto26 * An android.app.NotificationChannelGroup object.
Dnotification_channel.proto54 // Provided by the app but will match a NotificationChannelGroup id.

12