Home
last modified time | relevance | path

Searched refs:sbn (Results 1 – 25 of 74) sorted by relevance

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationGroupManager.java80 public boolean isGroupExpanded(StatusBarNotification sbn) { in isGroupExpanded() argument
81 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); in isGroupExpanded()
88 public void setGroupExpanded(StatusBarNotification sbn, boolean expanded) { in setGroupExpanded() argument
89 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); in setGroupExpanded()
118 final StatusBarNotification sbn) { in onEntryRemovedInternal() argument
119 String groupKey = getGroupKey(sbn); in onEntryRemovedInternal()
128 if (isGroupChild(sbn)) { in onEntryRemovedInternal()
148 final StatusBarNotification sbn = added.notification; in onEntryAdded() local
149 boolean isGroupChild = isGroupChild(sbn); in onEntryAdded()
150 String groupKey = getGroupKey(sbn); in onEntryAdded()
[all …]
DNotificationListenerWithPlugins.java83 public boolean onPluginNotificationPosted(StatusBarNotification sbn, in onPluginNotificationPosted() argument
86 if (plugin.onNotificationPosted(sbn, rankingMap)) { in onPluginNotificationPosted()
97 public boolean onPluginNotificationRemoved(StatusBarNotification sbn, in onPluginNotificationRemoved() argument
100 if (plugin.onNotificationRemoved(sbn, rankingMap)) { in onPluginNotificationRemoved()
137 public void addNotification(StatusBarNotification sbn) { in getProvider() argument
138 onNotificationPosted(sbn, getRankingMap()); in getProvider()
142 public void removeNotification(StatusBarNotification sbn) { in getProvider() argument
143 onNotificationRemoved(sbn, getRankingMap()); in getProvider()
DStatusBarNotificationActivityStarter.java177 public void onNotificationClicked(StatusBarNotification sbn, ExpandableNotificationRow row) { in onNotificationClicked() argument
186 Notification notification = sbn.getNotification(); in onNotificationClicked()
200 final String notificationKey = sbn.getKey(); in onNotificationClicked()
212 sbn, row, controller, intent, notificationKey, in onNotificationClicked()
224 StatusBarNotification sbn, in handleNotificationClickAfterKeyguardDismissed() argument
242 mHeadsUpManager.removeNotification(sbn.getKey(), in handleNotificationClickAfterKeyguardDismissed()
246 if (shouldAutoCancel(sbn) && mGroupManager.isOnlyChildInGroup(sbn)) { in handleNotificationClickAfterKeyguardDismissed()
248 mGroupManager.getLogicalGroupSummary(sbn).notification; in handleNotificationClickAfterKeyguardDismissed()
255 sbn, row, controller, intent, notificationKey, in handleNotificationClickAfterKeyguardDismissed()
272 StatusBarNotification sbn, in handleNotificationClickAfterPanelCollapsed() argument
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DForegroundServiceNotificationListener.java77 private void addNotification(StatusBarNotification sbn, int importance) { in addNotification() argument
78 updateNotification(sbn, importance); in addNotification()
84 private void removeNotification(StatusBarNotification sbn) { in removeNotification() argument
86 sbn.getUserId(), in removeNotification()
90 if (mForegroundServiceController.isDisclosureNotification(sbn)) { in removeNotification()
98 return userState.removeNotification(sbn.getPackageName(), sbn.getKey()); in removeNotification()
108 sbn.getUserId(), sbn)); in removeNotification()
118 private void updateNotification(StatusBarNotification sbn, int newImportance) { in updateNotification() argument
120 sbn.getUserId(), in updateNotification()
122 if (mForegroundServiceController.isDisclosureNotification(sbn)) { in updateNotification()
[all …]
DForegroundServiceController.java141 public boolean isDisclosureNotification(StatusBarNotification sbn) { in isDisclosureNotification() argument
142 return sbn.getId() == SystemMessageProto.SystemMessage.NOTE_FOREGROUND_SERVICES in isDisclosureNotification()
143 && sbn.getTag() == null in isDisclosureNotification()
144 && sbn.getPackageName().equals("android"); in isDisclosureNotification()
150 public boolean isSystemAlertNotification(StatusBarNotification sbn) { in isSystemAlertNotification() argument
151 return sbn.getPackageName().equals("android") in isSystemAlertNotification()
152 && sbn.getTag() != null in isSystemAlertNotification()
153 && sbn.getTag().contains("AlertWindowNotification"); in isSystemAlertNotification()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationRecordTest.java205 StatusBarNotification sbn = getNotification(PKG_N_MR1, true /* noisy */, in testSound_default_preUpgradeUsesNotification() local
209 NotificationRecord record = new NotificationRecord(mMockContext, sbn, defaultChannel); in testSound_default_preUpgradeUsesNotification()
218 StatusBarNotification sbn = getNotification(PKG_N_MR1, true /* noisy */, in testSound_custom_preUpgradeUsesNotification() local
222 NotificationRecord record = new NotificationRecord(mMockContext, sbn, defaultChannel); in testSound_custom_preUpgradeUsesNotification()
232 StatusBarNotification sbn = getNotification(PKG_N_MR1, true /* noisy */, in testSound_default_userLocked_preUpgrade() local
236 NotificationRecord record = new NotificationRecord(mMockContext, sbn, defaultChannel); in testSound_default_userLocked_preUpgrade()
244 StatusBarNotification sbn = getNotification(PKG_N_MR1, false /* noisy */, in testSound_noSound_preUpgrade() local
248 NotificationRecord record = new NotificationRecord(mMockContext, sbn, defaultChannel); in testSound_noSound_preUpgrade()
257 StatusBarNotification sbn = getNotification(PKG_O, true /* noisy */, in testSound_default_upgradeUsesChannel() local
261 NotificationRecord record = new NotificationRecord(mMockContext, sbn, channel); in testSound_default_upgradeUsesChannel()
[all …]
DNotificationManagerServiceTest.java439 StatusBarNotification sbn = new StatusBarNotification(pkg, pkg, uid, "tag", uid, 0, in generateSbn() local
441 return sbn; in generateSbn()
460 StatusBarNotification sbn = new StatusBarNotification(PKG, PKG, id, "tag", mUid, 0, in generateNotificationRecord() local
462 return new NotificationRecord(mContext, sbn, channel); in generateNotificationRecord()
488 StatusBarNotification sbn = new StatusBarNotification(PKG, PKG, 1, "tag", mUid, 0, in generateNotificationRecord() local
490 return new NotificationRecord(mContext, sbn, channel); in generateNotificationRecord()
563 when(mActivityManager.getPackageImportance(nrBubble.sbn.getPackageName())).thenReturn( in addGroupWithBubblesAndValidateAdded()
567 nrBubble.sbn.getId(), nrBubble.sbn.getNotification(), nrBubble.sbn.getUserId()); in addGroupWithBubblesAndValidateAdded()
579 nrPlain.sbn.getId(), nrPlain.sbn.getNotification(), nrPlain.sbn.getUserId()); in addGroupWithBubblesAndValidateAdded()
592 nrSummary.sbn.getId(), nrSummary.sbn.getNotification(), nrSummary.sbn.getUserId()); in addGroupWithBubblesAndValidateAdded()
[all …]
DSnoozeHelperTest.java81 UserHandle.USER_SYSTEM, r.sbn.getPackageName(), r.getKey())); in testSnoozeForTime()
91 UserHandle.USER_SYSTEM, r.sbn.getPackageName(), r.getKey()));
101 UserHandle.USER_SYSTEM, r.sbn.getPackageName(), r.getKey()));
103 UserHandle.USER_SYSTEM, r2.sbn.getPackageName(), r2.getKey()));
105 mSnoozeHelper.cancel(UserHandle.USER_SYSTEM, r.sbn.getPackageName(), "one", 1);
109 UserHandle.USER_SYSTEM, r.sbn.getPackageName(), r.getKey()));
111 UserHandle.USER_SYSTEM, r2.sbn.getPackageName(), r2.getKey()));
123 UserHandle.USER_SYSTEM, r.sbn.getPackageName(), r.getKey()));
125 UserHandle.USER_SYSTEM, r2.sbn.getPackageName(), r2.getKey()));
127 UserHandle.USER_ALL, r3.sbn.getPackageName(), r3.getKey()));
[all …]
DZenModeFilteringTest.java73 StatusBarNotification sbn = mock(StatusBarNotification.class); in getNotificationRecord() local
75 when(sbn.getNotification()).thenReturn(notification); in getNotificationRecord()
76 return new NotificationRecord(mContext, sbn, c); in getNotificationRecord()
100 r.sbn.getNotification().category = Notification.CATEGORY_ALARM; in testIsAlarm()
107 r.sbn.getNotification().category = Notification.CATEGORY_CALL; in testIsAlarm_wrongCategory()
124 when(r.sbn.getPackageName()).thenReturn("android"); in testSuppressDNDInfo_yes_VisEffectsAllowed()
125 when(r.sbn.getId()).thenReturn(SystemMessage.NOTE_ZEN_UPGRADE); in testSuppressDNDInfo_yes_VisEffectsAllowed()
135 when(r.sbn.getPackageName()).thenReturn("android"); in testSuppressDNDInfo_yes_WrongId()
136 when(r.sbn.getId()).thenReturn(SystemMessage.NOTE_ACCOUNT_CREDENTIAL_PERMISSION); in testSuppressDNDInfo_yes_WrongId()
145 when(r.sbn.getPackageName()).thenReturn("android2"); in testSuppressDNDInfo_yes_WrongPackage()
[all …]
DGroupHelperTest.java162 final StatusBarNotification sbn = getSbn(pkg, i, String.valueOf(i), UserHandle.SYSTEM); in testDropToZeroRemoveGroup() local
163 posted.add(sbn); in testDropToZeroRemoveGroup()
164 mGroupHelper.onNotificationPosted(sbn, false); in testDropToZeroRemoveGroup()
189 final StatusBarNotification sbn = getSbn(pkg, i, String.valueOf(i), UserHandle.SYSTEM); in testAppStartsGrouping() local
190 posted.add(sbn); in testAppStartsGrouping()
191 mGroupHelper.onNotificationPosted(sbn, false); in testAppStartsGrouping()
201 final StatusBarNotification sbn = in testAppStartsGrouping() local
203 mGroupHelper.onNotificationPosted(sbn, false); in testAppStartsGrouping()
210 final StatusBarNotification sbn = in testAppStartsGrouping() local
212 mGroupHelper.onNotificationPosted(sbn, false); in testAppStartsGrouping()
[all …]
DNotificationIntrusivenessExtractorTest.java49 StatusBarNotification sbn = new StatusBarNotification("", "", 0, "", 0, in testNonIntrusive() local
51 NotificationRecord r = new NotificationRecord(getContext(), sbn, channel); in testNonIntrusive()
66 StatusBarNotification sbn = new StatusBarNotification("", "", 0, "", 0, in testIntrusive_fillScreen() local
69 NotificationRecord r = new NotificationRecord(getContext(), sbn, channel); in testIntrusive_fillScreen()
84 StatusBarNotification sbn = new StatusBarNotification("", "", 0, "", 0, in testOldNotificationsNotIntrusive() local
88 NotificationRecord r = new NotificationRecord(getContext(), sbn, channel); in testOldNotificationsNotIntrusive()
/frameworks/base/services/core/java/com/android/server/notification/
DGroupHelper.java49 public void onNotificationPosted(StatusBarNotification sbn, boolean autogroupSummaryExists) { in onNotificationPosted() argument
50 if (DEBUG) Log.i(TAG, "POSTED " + sbn.getKey()); in onNotificationPosted()
53 if (!sbn.isAppGroup()) { in onNotificationPosted()
58 = mUngroupedNotifications.get(sbn.getUserId()); in onNotificationPosted()
62 mUngroupedNotifications.put(sbn.getUserId(), ungroupedNotificationsByUser); in onNotificationPosted()
64 = ungroupedNotificationsByUser.get(sbn.getPackageName()); in onNotificationPosted()
69 notificationsForPackage.add(sbn.getKey()); in onNotificationPosted()
70 ungroupedNotificationsByUser.put(sbn.getPackageName(), notificationsForPackage); in onNotificationPosted()
78 adjustAutogroupingSummary(sbn.getUserId(), sbn.getPackageName(), in onNotificationPosted()
84 maybeUngroup(sbn, false, sbn.getUserId()); in onNotificationPosted()
[all …]
DNotificationRecord.java93 final StatusBarNotification sbn; field in NotificationRecord
192 public NotificationRecord(Context context, StatusBarNotification sbn, in NotificationRecord() argument
194 this.sbn = sbn; in NotificationRecord()
196 .getPackageTargetSdkVersion(sbn.getPackageName()); in NotificationRecord()
199 mOriginalFlags = sbn.getNotification().flags; in NotificationRecord()
201 mCreationTimeMs = sbn.getPostTime(); in NotificationRecord()
229 final Notification n = sbn.getNotification(); in calculateSound()
265 final Notification notification = sbn.getNotification(); in calculateLights()
296 final Notification notification = sbn.getNotification(); in calculateVibration()
309 final Notification n = sbn.getNotification(); in calculateAttributes()
[all …]
/frameworks/base/core/java/com/android/internal/util/
DNotificationMessagingUtil.java49 public boolean isImportantMessaging(StatusBarNotification sbn, int importance) { in isImportantMessaging() argument
54 return hasMessagingStyle(sbn) || (isCategoryMessage(sbn) && isDefaultMessagingApp(sbn)); in isImportantMessaging()
57 public boolean isMessaging(StatusBarNotification sbn) { in isMessaging() argument
58 return hasMessagingStyle(sbn) || isDefaultMessagingApp(sbn) || isCategoryMessage(sbn); in isMessaging()
62 private boolean isDefaultMessagingApp(StatusBarNotification sbn) { in isDefaultMessagingApp() argument
63 final int userId = sbn.getUserId(); in isDefaultMessagingApp()
68 return Objects.equals(mDefaultSmsApp.get(userId), sbn.getPackageName()); in isDefaultMessagingApp()
87 private boolean hasMessagingStyle(StatusBarNotification sbn) { in hasMessagingStyle() argument
88 Class<? extends Notification.Style> style = sbn.getNotification().getNotificationStyle(); in hasMessagingStyle()
92 private boolean isCategoryMessage(StatusBarNotification sbn) { in isCategoryMessage() argument
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationFilter.java88 final StatusBarNotification sbn = entry.notification; in shouldFilterOut() local
90 || showNotificationEvenIfUnprovisioned(sbn))) { in shouldFilterOut()
94 if (!getEnvironment().isNotificationForCurrentProfiles(sbn)) { in shouldFilterOut()
98 if (getUserManager().isLockscreenPublicMode(sbn.getUserId()) in shouldFilterOut()
99 && (sbn.getNotification().visibility == Notification.VISIBILITY_SECRET in shouldFilterOut()
100 || getUserManager().shouldHideNotifications(sbn.getUserId()) in shouldFilterOut()
101 || getUserManager().shouldHideNotifications(sbn.getKey()))) { in shouldFilterOut()
118 && mGroupManager.isChildInGroupWithSummary(sbn)) { in shouldFilterOut()
122 if (getFsc().isDisclosureNotification(sbn) in shouldFilterOut()
123 && !getFsc().isDisclosureNeededForUser(sbn.getUserId())) { in shouldFilterOut()
[all …]
DNotificationInterruptionStateProvider.java168 final StatusBarNotification sbn = entry.notification; in shouldBubbleUp() local
180 Log.d(TAG, "No bubble up: not allowed to bubble: " + sbn.getKey()); in shouldBubbleUp()
187 Log.d(TAG, "No bubble up: notification " + sbn.getKey() in shouldBubbleUp()
193 final Notification n = sbn.getNotification(); in shouldBubbleUp()
196 Log.d(TAG, "No bubble up: notification: " + sbn.getKey() in shouldBubbleUp()
220 StatusBarNotification sbn = entry.notification; in shouldHeadsUpWhenAwake() local
241 + "bubble: " + sbn.getKey()); in shouldHeadsUpWhenAwake()
248 Log.d(TAG, "No heads up: suppressed by DND: " + sbn.getKey()); in shouldHeadsUpWhenAwake()
255 Log.d(TAG, "No heads up: unimportant notification: " + sbn.getKey()); in shouldHeadsUpWhenAwake()
270 Log.d(TAG, "No heads up: not in use: " + sbn.getKey()); in shouldHeadsUpWhenAwake()
[all …]
DNotificationClicker.java58 final StatusBarNotification sbn = row.getStatusBarNotification(); in onClick() local
59 if (sbn == null) { in onClick()
85 mNotificationActivityStarter.onNotificationClicked(sbn, row); in onClick()
95 public void register(ExpandableNotificationRow row, StatusBarNotification sbn) { in register() argument
96 Notification notification = sbn.getNotification(); in register()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationListener.java83 for (StatusBarNotification sbn : notifications) { in onListenerConnected()
84 mEntryManager.addNotification(sbn, currentRanking); in onListenerConnected()
92 public void onNotificationPosted(final StatusBarNotification sbn, in onNotificationPosted() argument
94 if (DEBUG) Log.d(TAG, "onNotificationPosted: " + sbn); in onNotificationPosted()
95 if (sbn != null && !onPluginNotificationPosted(sbn, rankingMap)) { in onNotificationPosted()
97 processForRemoteInput(sbn.getNotification(), mContext); in onNotificationPosted()
98 String key = sbn.getKey(); in onNotificationPosted()
106 && mGroupManager.isChildInGroupWithSummary(sbn)) { in onNotificationPosted()
108 Log.d(TAG, "Ignoring group child due to existing summary: " + sbn); in onNotificationPosted()
121 mEntryManager.updateNotification(sbn, rankingMap); in onNotificationPosted()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarterTest.java147 StatusBarNotification sbn = mNotificationRow.getStatusBarNotification(); in setUp() local
148 sbn.getNotification().contentIntent = mContentIntent; in setUp()
149 sbn.getNotification().flags |= Notification.FLAG_AUTO_CANCEL; in setUp()
199 StatusBarNotification sbn = mNotificationRow.getStatusBarNotification(); in testOnNotificationClicked_keyGuardShowing() local
200 sbn.getNotification().contentIntent = mContentIntent; in testOnNotificationClicked_keyGuardShowing()
201 sbn.getNotification().flags |= Notification.FLAG_AUTO_CANCEL; in testOnNotificationClicked_keyGuardShowing()
207 mNotificationActivityStarter.onNotificationClicked(sbn, mNotificationRow); in testOnNotificationClicked_keyGuardShowing()
224 eq(sbn.getKey()), any(NotificationVisibility.class)); in testOnNotificationClicked_keyGuardShowing()
227 verify(mEntryManager).performRemoveNotification(eq(sbn), eq(REASON_CLICK)); in testOnNotificationClicked_keyGuardShowing()
233 StatusBarNotification sbn = mBubbleNotificationRow.getStatusBarNotification(); in testOnNotificationClicked_bubble_noContentIntent_noKeyGuard() local
[all …]
/frameworks/base/core/java/android/service/notification/
DNotificationAssistantService.java121 abstract public void onNotificationSnoozedUntilContext(@NonNull StatusBarNotification sbn, in onNotificationSnoozedUntilContext() argument
133 abstract public @Nullable Adjustment onNotificationEnqueued(@NonNull StatusBarNotification sbn); in onNotificationEnqueued() argument
142 public @Nullable Adjustment onNotificationEnqueued(@NonNull StatusBarNotification sbn, in onNotificationEnqueued() argument
144 return onNotificationEnqueued(sbn); in onNotificationEnqueued()
170 public void onNotificationRemoved(@NonNull StatusBarNotification sbn, in onNotificationRemoved() argument
173 onNotificationRemoved(sbn, rankingMap, reason); in onNotificationRemoved()
289 StatusBarNotification sbn; in onNotificationEnqueuedWithChannel() local
291 sbn = sbnHolder.get(); in onNotificationEnqueuedWithChannel()
298 args.arg1 = sbn; in onNotificationEnqueuedWithChannel()
307 StatusBarNotification sbn; in onNotificationSnoozedUntilContext() local
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationRowBinderImpl.java135 final StatusBarNotification sbn = entry.notification; in inflateViews() local
137 entry.updateIcons(mContext, sbn); in inflateViews()
139 updateNotification(entry, pmUser, sbn, entry.getRow()); in inflateViews()
142 entry.createIcons(mContext, sbn); in inflateViews()
145 bindRow(entry, pmUser, sbn, row, onDismissRunnable); in inflateViews()
146 updateNotification(entry, pmUser, sbn, row); in inflateViews()
152 StatusBarNotification sbn, ExpandableNotificationRow row, in bindRow() argument
172 final String pkg = sbn.getPackageName(); in bindRow()
193 mBindRowCallback.onBindRow(entry, pmUser, sbn, row); in bindRow()
230 StatusBarNotification sbn, in updateNotification() argument
[all …]
DNotificationEntry.java308 public void createIcons(Context context, StatusBarNotification sbn) in createIcons() argument
310 Notification n = sbn.getNotification(); in createIcons()
314 + sbn.getPackageName()); in createIcons()
319 sbn.getPackageName() + "/0x" + Integer.toHexString(sbn.getId()), sbn); in createIcons()
324 sbn.getPackageName() + "/0x" + Integer.toHexString(sbn.getId()), sbn); in createIcons()
329 sbn.getPackageName() + "/0x" + Integer.toHexString(sbn.getId()), sbn); in createIcons()
334 sbn.getUser(), in createIcons()
335 sbn.getPackageName(), in createIcons()
359 sbn.getPackageName() + "/0x" + Integer.toHexString(sbn.getId()), sbn); in createIcons()
391 public void updateIcons(Context context, StatusBarNotification sbn) in updateIcons() argument
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
DForegroundServiceControllerTest.java351 final StatusBarNotification sbn = mock(StatusBarNotification.class); in makeMockSBN() local
352 when(sbn.getNotification()).thenReturn(n); in makeMockSBN()
353 when(sbn.getId()).thenReturn(id); in makeMockSBN()
354 when(sbn.getPackageName()).thenReturn(pkg); in makeMockSBN()
355 when(sbn.getTag()).thenReturn(tag); in makeMockSBN()
356 when(sbn.getUserId()).thenReturn(userid); in makeMockSBN()
357 when(sbn.getUser()).thenReturn(new UserHandle(userid)); in makeMockSBN()
358 when(sbn.getKey()).thenReturn("MOCK:"+userid+"|"+pkg+"|"+id+"|"+tag); in makeMockSBN()
359 return sbn; in makeMockSBN()
364 StatusBarNotification sbn = in makeMockFgSBN() local
[all …]
/frameworks/base/core/tests/coretests/src/android/service/notification/
DStatusBarNotificationTest.java100 StatusBarNotification sbn = getNotification(PKG, GROUP_ID_1, CHANNEL_ID); in testLogMakerNoStaleData() local
101 final LogMaker logMaker = sbn.getLogMaker(); in testLogMakerNoStaleData()
104 assertNull(sbn.getLogMaker().getTaggedData(extraTag)); in testLogMakerNoStaleData()
153 StatusBarNotification sbn = getNotification(PKG, GROUP_ID_1, CHANNEL_ID); in testLogMakerOverrideGroup() local
155 sbn.getLogMaker().getTaggedData(MetricsEvent.FIELD_NOTIFICATION_GROUP_ID)); in testLogMakerOverrideGroup()
157 sbn.setOverrideGroupKey(GROUP_ID_2); in testLogMakerOverrideGroup()
159 sbn.getLogMaker().getTaggedData(MetricsEvent.FIELD_NOTIFICATION_GROUP_ID)); in testLogMakerOverrideGroup()
161 sbn.setOverrideGroupKey(null); in testLogMakerOverrideGroup()
163 sbn.getLogMaker().getTaggedData(MetricsEvent.FIELD_NOTIFICATION_GROUP_ID)); in testLogMakerOverrideGroup()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DNotificationListenerController.java33 default boolean onNotificationPosted(StatusBarNotification sbn, RankingMap rankingMap) { in onNotificationPosted() argument
36 default boolean onNotificationRemoved(StatusBarNotification sbn, RankingMap rankingMap) { in onNotificationRemoved() argument
58 void addNotification(StatusBarNotification sbn); in addNotification() argument
59 void removeNotification(StatusBarNotification sbn); in removeNotification() argument

123