Searched defs:sbn (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java211 StatusBarNotification sbn = entry.notification;
213 if (shouldFilterOut(sbn)) {
217 if (sbn.getNotification().isGroupSummary()) {
218 mGroupsWithSummaries.add(sbn.getGroupKey());
228 StatusBarNotification sbn = ent.notification;
229 if (sbn.getNotification().isGroupChild() &&
230 mGroupsWithSummaries.contains(sbn.getGroupKey())) {
243 boolean shouldFilterOut(StatusBarNotification sbn) { argument
245 showNotificationEvenIfUnprovisioned(sbn))) {
249 if (!mEnvironment.isNotificationForCurrentProfiles(sbn)) {
277 showNotificationEvenIfUnprovisioned(StatusBarNotification sbn) argument
318 isSystemNotification(StatusBarNotification sbn) argument
329 isNotificationForCurrentProfiles(StatusBarNotification sbn) argument
[all...]
H A DBaseStatusBar.java364 for (StatusBarNotification sbn : notifications) {
365 addNotification(sbn, currentRanking);
372 public void onNotificationPosted(final StatusBarNotification sbn,
374 if (DEBUG) Log.d(TAG, "onNotificationPosted: " + sbn);
378 Notification n = sbn.getNotification();
379 boolean isUpdate = mNotificationData.get(sbn.getKey()) != null
380 || isHeadsUp(sbn.getKey());
386 mNotificationData.isGroupWithSummary(sbn.getGroupKey())) {
388 Log.d(TAG, "Ignoring group child due to existing summary: " + sbn);
393 removeNotification(sbn
696 applyColorsAndBackgrounds(StatusBarNotification sbn, NotificationData.Entry entry) argument
1607 createNotificationViews(StatusBarNotification sbn) argument
1704 shouldShowOnKeyguard(StatusBarNotification sbn) argument
1993 shouldInterrupt(StatusBarNotification sbn) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java47 final StatusBarNotification sbn; field in class:NotificationRecord
74 public NotificationRecord(StatusBarNotification sbn, int score) argument
76 this.sbn = sbn;
78 mOriginalFlags = sbn.getNotification().flags;
93 public Notification getNotification() { return sbn.getNotification(); }
94 public int getFlags() { return sbn.getNotification().flags; }
95 public UserHandle getUser() { return sbn.getUser(); }
96 public String getKey() { return sbn.getKey(); }
98 public int getUserId() { return sbn
[all...]
H A DNotificationManagerService.java535 StatusBarNotification sbn = r.sbn;
536 cancelNotification(callingUid, callingPid, sbn.getPackageName(), sbn.getTag(),
537 sbn.getId(), Notification.FLAG_AUTO_CANCEL,
1183 tmp[i] = mNotificationList.get(i).sbn;
1256 final int userId = r.sbn.getUserId();
1263 r.sbn.getPackageName(), r.sbn.getTag(), r.sbn
2742 isVisibleToListener(StatusBarNotification sbn, ManagedServiceInfo listener) argument
2817 notifyPostedLocked(StatusBarNotification sbn, StatusBarNotification oldSbn) argument
2865 notifyRemovedLocked(StatusBarNotification sbn) argument
2930 notifyPosted(final ManagedServiceInfo info, final StatusBarNotification sbn, NotificationRankingUpdate rankingUpdate) argument
2941 notifyRemoved(ManagedServiceInfo info, StatusBarNotification sbn, NotificationRankingUpdate rankingUpdate) argument
3019 matches(StatusBarNotification sbn) argument
[all...]
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java136 * @param sbn A data structure encapsulating the original {@link android.app.Notification}
140 public void onNotificationPosted(StatusBarNotification sbn) { argument
147 * @param sbn A data structure encapsulating the original {@link android.app.Notification}
153 public void onNotificationPosted(StatusBarNotification sbn, RankingMap rankingMap) { argument
154 onNotificationPosted(sbn);
170 * @param sbn A data structure encapsulating at least the original information (tag and id)
174 public void onNotificationRemoved(StatusBarNotification sbn) { argument
191 * @param sbn A data structure encapsulating at least the original information (tag and id)
198 public void onNotificationRemoved(StatusBarNotification sbn, RankingMap rankingMap) { argument
199 onNotificationRemoved(sbn);
[all...]

Completed in 151 milliseconds