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.java416 for (StatusBarNotification sbn : notifications) {
417 addNotification(sbn, currentRanking);
424 public void onNotificationPosted(final StatusBarNotification sbn,
426 if (DEBUG) Log.d(TAG, "onNotificationPosted: " + sbn);
430 Notification n = sbn.getNotification();
431 boolean isUpdate = mNotificationData.get(sbn.getKey()) != null
432 || isHeadsUp(sbn.getKey());
438 mNotificationData.isGroupWithSummary(sbn.getGroupKey())) {
440 Log.d(TAG, "Ignoring group child due to existing summary: " + sbn);
445 removeNotification(sbn
758 applyColorsAndBackgrounds(StatusBarNotification sbn, NotificationData.Entry entry) argument
1692 createNotificationViews(StatusBarNotification sbn) argument
1789 shouldShowOnKeyguard(StatusBarNotification sbn) argument
2078 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.java549 StatusBarNotification sbn = r.sbn;
550 cancelNotification(callingUid, callingPid, sbn.getPackageName(), sbn.getTag(),
551 sbn.getId(), Notification.FLAG_AUTO_CANCEL,
1245 tmp[i] = mNotificationList.get(i).sbn;
1318 final int userId = r.sbn.getUserId();
1325 r.sbn.getPackageName(), r.sbn.getTag(), r.sbn
2928 isVisibleToListener(StatusBarNotification sbn, ManagedServiceInfo listener) argument
3007 notifyPostedLocked(StatusBarNotification sbn, StatusBarNotification oldSbn) argument
3055 notifyRemovedLocked(StatusBarNotification sbn) argument
3120 notifyPosted(final ManagedServiceInfo info, final StatusBarNotification sbn, NotificationRankingUpdate rankingUpdate) argument
3131 notifyRemoved(ManagedServiceInfo info, StatusBarNotification sbn, NotificationRankingUpdate rankingUpdate) argument
3234 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 1528 milliseconds