HomeSort by relevance Sort by last modified time
    Searched refs:mNotifications (Results 1 - 5 of 5) sorted by null

  /frameworks/base/services/java/com/android/server/
StatusBarManagerService.java 63 HashMap<IBinder,StatusBarNotification> mNotifications
383 synchronized (mNotifications) {
384 for (Map.Entry<IBinder,StatusBarNotification> e: mNotifications.entrySet()) {
442 synchronized (mNotifications) {
444 mNotifications.put(key, notification);
456 synchronized (mNotifications) {
457 if (!mNotifications.containsKey(key)) {
460 mNotifications.put(key, notification);
471 synchronized (mNotifications) {
472 final StatusBarNotification n = mNotifications.remove(key)
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.h 70 Vector<WTF::String> mNotifications;
WebIconDatabase.cpp 82 mNotifications.append(pageURL);
149 queue.swap(mNotifications);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotification.java 41 HashMap <String, NotificationItem> mNotifications;
100 mNotifications = new HashMap<String, NotificationItem>();
113 mNotifications.clear();
129 if (mNotifications.containsKey(packageName)) {
130 item = mNotifications.get(packageName);
138 mNotifications.put(packageName, item);
148 for (NotificationItem item : mNotifications.values()) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 87 private HashMap<String, NotificationItem> mNotifications;
128 mNotifications = new HashMap<String, NotificationItem>();
228 mNotifications.clear();
247 if (mNotifications.containsKey(batchID)) {
266 mNotifications.put(batchID, item);
275 for (NotificationItem item : mNotifications.values()) {

Completed in 85 milliseconds