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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DWifiTracker.java1049 final SparseIntArray mPendingNotifications = new SparseIntArray(); field in class:WifiTracker.AccessPointListenerAdapter
1053 int type = mPendingNotifications.get(accessPoint.mId);
1054 mPendingNotifications.put(accessPoint.mId, type | AP_CHANGED);
1059 int type = mPendingNotifications.get(accessPoint.mId);
1060 mPendingNotifications.put(accessPoint.mId, type | LEVEL_CHANGED);
1089 notificationMap = mAccessPointListenerAdapter.mPendingNotifications.clone();
1092 mAccessPointListenerAdapter.mPendingNotifications.clear();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBar.java749 private HashMap<String, Entry> mPendingNotifications = new HashMap<>(); field in class:StatusBar
1680 mPendingNotifications.put(key, shadeEntry);
1684 if (mPendingNotifications.containsKey(key)) {
1685 Entry entry = mPendingNotifications.get(key);
1687 mPendingNotifications.remove(key);
1714 mPendingNotifications.remove(entry.key);
3527 pw.print(" mPendingNotifications=");
3528 if (mPendingNotifications.size() == 0) {
3531 for (Entry entry : mPendingNotifications.values()) {

Completed in 131 milliseconds