Lines Matching refs:notifications
78 private Map<Call, NotificationInfo> notifications = new ArrayMap<>(); field in ExternalCallNotifier
95 Assert.checkArgument(!notifications.containsKey(call)); in onExternalCallAdded()
97 notifications.put(call, info); in onExternalCallAdded()
116 Assert.checkArgument(notifications.containsKey(call)); in onExternalCallUpdated()
117 postNotification(notifications.get(call)); in onExternalCallUpdated()
133 for (NotificationInfo info : notifications.values()) { in pullExternalCall()
170 if (notifications.containsKey(info.getCall())) { in showNotifcation()
180 if (notifications.containsKey(info.getCall())) { in showNotifcation()
189 Assert.checkArgument(notifications.containsKey(call)); in dismissNotification()
193 context, NOTIFICATION_TAG, notifications.get(call).getNotificationId()); in dismissNotification()
195 notifications.remove(call); in dismissNotification()