Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
DWifiTracker.java973 final SparseIntArray mPendingNotifications = new SparseIntArray(); field in WifiTracker.AccessPointListenerAdapter
977 int type = mPendingNotifications.get(accessPoint.mId); in onAccessPointChanged()
978 mPendingNotifications.put(accessPoint.mId, type | AP_CHANGED); in onAccessPointChanged()
983 int type = mPendingNotifications.get(accessPoint.mId); in onLevelChanged()
984 mPendingNotifications.put(accessPoint.mId, type | LEVEL_CHANGED); in onLevelChanged()
1011 notificationMap = mAccessPointListenerAdapter.mPendingNotifications.clone(); in copyAndNotifyListeners()
1014 mAccessPointListenerAdapter.mPendingNotifications.clear(); in copyAndNotifyListeners()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java719 private HashMap<String, Entry> mPendingNotifications = new HashMap<>(); field in StatusBar
1607 mPendingNotifications.put(key, shadeEntry); in addNotification()
1611 if (mPendingNotifications.containsKey(key)) { in abortExistingInflation()
1612 Entry entry = mPendingNotifications.get(key); in abortExistingInflation()
1614 mPendingNotifications.remove(key); in abortExistingInflation()
1641 mPendingNotifications.remove(entry.key); in onAsyncInflationFinished()
3366 if (mPendingNotifications.size() == 0) { in dump()
3369 for (Entry entry : mPendingNotifications.values()) { in dump()