Home
last modified time | relevance | path

Searched refs:allPendingIntents (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
DNotification.java772 public ArraySet<PendingIntent> allPendingIntents; field in Notification
1599 allPendingIntents = (ArraySet<PendingIntent>) parcel.readArraySet(null); in Notification()
1757 if (!ArrayUtils.isEmpty(allPendingIntents)) { in cloneInto()
1758 that.allPendingIntents = new ArraySet<>(allPendingIntents); in cloneInto()
1884 final boolean collectPendingIntents = (allPendingIntents == null); in writeToParcel()
1889 if (allPendingIntents == null) { in writeToParcel()
1890 allPendingIntents = new ArraySet<>(); in writeToParcel()
1892 allPendingIntents.add(intent); in writeToParcel()
1901 parcel.writeArraySet(allPendingIntents); in writeToParcel()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java2595 if (notification.allPendingIntents != null) { in enqueueNotificationInternal()
2596 final int intentCount = notification.allPendingIntents.size(); in enqueueNotificationInternal()
2603 PendingIntent pendingIntent = notification.allPendingIntents.valueAt(i); in enqueueNotificationInternal()