Searched refs:allPendingIntents (Results 1 – 2 of 2) sorted by relevance
772 public ArraySet<PendingIntent> allPendingIntents; field in Notification1599 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()
2595 if (notification.allPendingIntents != null) { in enqueueNotificationInternal()2596 final int intentCount = notification.allPendingIntents.size(); in enqueueNotificationInternal()2603 PendingIntent pendingIntent = notification.allPendingIntents.valueAt(i); in enqueueNotificationInternal()