Searched defs:groupKey (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/tests/notification/src/com/android/server/notification/
H A DGroupHelperTest.java61 UserHandle user, String groupKey) {
65 if (groupKey != null) {
66 nb.setGroup(groupKey);
60 getSbn(String pkg, int id, String tag, UserHandle user, String groupKey) argument
H A DSnoozeHelperTest.java296 UserHandle user, String groupKey, boolean groupSummary) {
302 .setGroup(groupKey)
295 getNotificationRecord(String pkg, int id, String tag, UserHandle user, String groupKey, boolean groupSummary) argument
H A DBuzzBeepBlinkTest.java243 private NotificationRecord getBeepyNotificationRecord(String groupKey, int groupAlertBehavior) { argument
245 groupKey, groupAlertBehavior, false);
250 boolean defaultSound, boolean defaultLights, String groupKey, int groupAlertBehavior,
292 builder.setGroup(groupKey);
248 getNotificationRecord(int id, boolean insistent, boolean once, boolean noisy, boolean buzzy, boolean lights, boolean defaultVibration, boolean defaultSound, boolean defaultLights, String groupKey, int groupAlertBehavior, boolean isLeanback) argument
H A DNotificationManagerServiceTest.java243 String groupKey, boolean isSummary) {
247 .setGroup(groupKey)
242 generateNotificationRecord(NotificationChannel channel, int id, String groupKey, boolean isSummary) argument
/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.java37 private String groupKey; field in class:StatusBarNotification
67 this.groupKey = groupKey();
90 this.groupKey = groupKey();
113 this.groupKey = groupKey();
124 private String groupKey() { method in class:StatusBarNotification
317 return groupKey;
336 groupKey
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DSnoozeHelper.java270 protected void repostGroupSummary(String pkg, int userId, String groupKey) { argument
285 && groupKey.equals(potentialGroupSummary.getGroupKey())) {
H A DNotificationManagerService.java4702 String groupKey = r.getGroupKey();
4703 NotificationRecord groupSummary = mSummaryByGroupKey.get(groupKey);
4705 mSummaryByGroupKey.remove(groupKey);
5034 String groupKey, int userId) {
5036 records.addAll(findGroupNotificationByListLocked(mNotificationList, pkg, groupKey, userId));
5038 findGroupNotificationByListLocked(mEnqueuedNotifications, pkg, groupKey, userId));
5045 ArrayList<NotificationRecord> list, String pkg, String groupKey, int userId) {
5050 if (notificationMatchesUserId(r, userId) && r.getGroupKey().equals(groupKey)
5033 findGroupNotificationsLocked(String pkg, String groupKey, int userId) argument
5044 findGroupNotificationByListLocked( ArrayList<NotificationRecord> list, String pkg, String groupKey, int userId) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationGroupManager.java90 String groupKey = getGroupKey(sbn);
91 final NotificationGroup group = mGroupMap.get(groupKey);
107 mGroupMap.remove(groupKey);
118 String groupKey = getGroupKey(sbn);
119 NotificationGroup group = mGroupMap.get(groupKey);
122 mGroupMap.put(groupKey, group);
182 private int getNumberOfIsolatedChildren(String groupKey) { argument
185 if (sbn.getGroupKey().equals(groupKey) && isIsolated(sbn)) {
192 private NotificationData.Entry getIsolatedChild(String groupKey) { argument
194 if (sbn.getGroupKey().equals(groupKey)
250 isGroupSuppressed(String groupKey) argument
332 getGroupSummary(String groupKey) argument
[all...]
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java1177 * @param groupKey The group key of the group.
1180 public Builder setGroup(String groupKey) { argument
1181 mGroupKey = groupKey;
/frameworks/base/core/java/android/app/
H A DNotification.java2495 sb.append(" groupKey=");
3569 * @param groupKey The group key of the group.
3572 public Builder setGroup(String groupKey) { argument
3573 mN.mGroupKey = groupKey;

Completed in 282 milliseconds