Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java1864 widget.updateSequenceNos.put(viewId, requestId); in scheduleNotifyAppWidgetViewDataChanged()
1938 widget.updateSequenceNos.put(ID_VIEWS_UPDATE, requestId); in scheduleNotifyUpdateAppWidgetLocked()
1978 widget.updateSequenceNos.clear(); in scheduleNotifyProviderChangedLocked()
1979 widget.updateSequenceNos.append(ID_PROVIDER_CHANGED, requestId); in scheduleNotifyProviderChangedLocked()
2014 widget.updateSequenceNos.clear(); in scheduleNotifyAppWidgetRemovedLocked()
4138 for (int j = widget.updateSequenceNos.size() - 1; j >= 0; j--) { in getPendingUpdatesForIdLocked()
4139 long requestId = widget.updateSequenceNos.valueAt(j); in getPendingUpdatesForIdLocked()
4143 int id = widget.updateSequenceNos.keyAt(j); in getPendingUpdatesForIdLocked()
4251 SparseLongArray updateSequenceNos = new SparseLongArray(2); field in AppWidgetServiceImpl.Widget