Home
last modified time | relevance | path

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

/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java2235 widget.updateSequenceNos.put(viewId, requestId); in scheduleNotifyAppWidgetViewDataChanged()
2318 widget.updateSequenceNos.put(ID_VIEWS_UPDATE, requestId); in scheduleNotifyUpdateAppWidgetLocked()
2383 widget.updateSequenceNos.clear(); in scheduleNotifyProviderChangedLocked()
2384 widget.updateSequenceNos.append(ID_PROVIDER_CHANGED, requestId); in scheduleNotifyProviderChangedLocked()
2429 widget.updateSequenceNos.clear(); in scheduleNotifyAppWidgetRemovedLocked()
4982 for (int j = widget.updateSequenceNos.size() - 1; j >= 0; j--) { in getPendingUpdatesForIdLocked()
4983 long requestId = widget.updateSequenceNos.valueAt(j); in getPendingUpdatesForIdLocked()
4987 int id = widget.updateSequenceNos.keyAt(j); in getPendingUpdatesForIdLocked()
5101 SparseLongArray updateSequenceNos = new SparseLongArray(2); field in AppWidgetServiceImpl.Widget