Home
last modified time | relevance | path

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

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadNotifier.java79 private final ArrayMap<String, Long> mActiveNotifs = new ArrayMap<>(); field in DownloadNotifier
112 synchronized (mActiveNotifs) { in init()
113 mActiveNotifs.clear(); in init()
117 mActiveNotifs.put(notif.getTag(), notif.getPostTime()); in init()
167 synchronized (mActiveNotifs) { in update()
215 if (mActiveNotifs.containsKey(tag)) { in updateWithLocked()
216 firstShown = mActiveNotifs.get(tag); in updateWithLocked()
219 mActiveNotifs.put(tag, firstShown); in updateWithLocked()
387 for (int i = 0; i < mActiveNotifs.size();) { in updateWithLocked()
388 final String tag = mActiveNotifs.keyAt(i); in updateWithLocked()
[all …]