Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotifRemoteViewCacheImpl.java53 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in getCachedView() local
54 if (contentViews == null) { in getCachedView()
57 return contentViews.get(flag); in getCachedView()
70 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in putCachedView() local
71 if (contentViews == null) { in putCachedView()
74 contentViews.put(flag, remoteView); in putCachedView()
79 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in removeCachedView() local
80 if (contentViews == null) { in removeCachedView()
83 contentViews.remove(flag); in removeCachedView()
88 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in clearCache() local
[all …]
DRowContentBindParams.java90 public void requireContentViews(@InflationFlag int contentViews) { in requireContentViews() argument
91 @InflationFlag int newContentViews = contentViews &= ~mContentViews; in requireContentViews()
92 mContentViews |= contentViews; in requireContentViews()
104 public void markContentViewsFreeable(@InflationFlag int contentViews) { in markContentViewsFreeable() argument
105 mContentViews &= ~contentViews; in markContentViewsFreeable()
106 mDirtyContentViews &= ~contentViews; in markContentViewsFreeable()
DNotificationContentInflater.java250 @InflationFlag int contentViews) { in cancelContentViewFrees() argument
251 if ((contentViews & FLAG_CONTENT_VIEW_CONTRACTED) != 0) { in cancelContentViewFrees()
254 if ((contentViews & FLAG_CONTENT_VIEW_EXPANDED) != 0) { in cancelContentViewFrees()
257 if ((contentViews & FLAG_CONTENT_VIEW_HEADS_UP) != 0) { in cancelContentViewFrees()
260 if ((contentViews & FLAG_CONTENT_VIEW_PUBLIC) != 0) { in cancelContentViewFrees()