Home
last modified time | relevance | path

Searched refs:removeNotification (Results 1 – 21 of 21) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DForegroundServicesUserState.java74 return removeNotification(mImportantNotifications, pkg, key); in removeImportantNotification()
82 return removeNotification(mStandardLayoutNotifications, pkg, key); in removeStandardLayoutNotification()
85 public boolean removeNotification(String pkg, String key) { in removeNotification() method in ForegroundServicesUserState
100 public boolean removeNotification(ArrayMap<String, ArraySet<String>> map, in removeNotification() method in ForegroundServicesUserState
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/
DNotificationTransitionAnimatorControllerTest.kt95 .removeNotification( in testHunIsRemovedAndCallbackIsInvokedIfWeDontAnimateLaunch()
118 .removeNotification( in testHunIsRemovedAndCallbackIsInvokedWhenAnimationIsCancelled()
141 .removeNotification( in testHunIsRemovedAndCallbackIsInvokedWhenAnimationEnds()
183 .removeNotification( in testAlertingSummaryHunRemovedOnNonAlertingChildLaunch()
190 .removeNotification( in testAlertingSummaryHunRemovedOnNonAlertingChildLaunch()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/headsup/
DHeadsUpManager.kt132 fun removeNotification(key: String, releaseImmediately: Boolean, reason: String): Boolean in addHeadsUpPhoneListener() method
144 fun removeNotification( in addHeadsUpPhoneListener() method
308 override fun removeNotification(key: String, releaseImmediately: Boolean, reason: String) = in onHeadsUpAnimatingAwayStateChanged() method in com.android.systemui.statusbar.notification.headsup.HeadsUpManagerEmptyImpl
311 override fun removeNotification( in onHeadsUpAnimatingAwayStateChanged() method in com.android.systemui.statusbar.notification.headsup.HeadsUpManagerEmptyImpl
DHeadsUpManagerImpl.java347 public boolean removeNotification( in removeNotification() method in HeadsUpManagerImpl
353 return removeNotification(key, releaseImmediately, in removeNotification()
357 final boolean removed = removeNotification(key, releaseImmediately, in removeNotification()
365 public boolean removeNotification(@NotNull String key, boolean releaseImmediately, in removeNotification() method in HeadsUpManagerImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarter.java239 mHeadsUpManager.removeNotification(entry.getKey(), /* releaseImmediately= */ true, in onNotificationBubbleIconClicked()
416 final Runnable removeNotification = in handleNotificationClickAfterPanelCollapsed() local
423 mShadeController.addPostCollapseAction(removeNotification); in handleNotificationClickAfterPanelCollapsed()
425 removeNotification.run(); in handleNotificationClickAfterPanelCollapsed()
452 final Runnable removeNotification = in onDragSuccess() local
460 mShadeController.addPostCollapseAction(removeNotification); in onDragSuccess()
462 removeNotification.run(); in onDragSuccess()
682 mHeadsUpManager.removeNotification(key, /* releaseImmediately= */ true, in removeHunAfterClick()
DNotificationListenerWithPlugins.java164 public void removeNotification(StatusBarNotification sbn) { in getProvider() method in NotificationListenerWithPlugins
DDozeServiceHost.java193 mHeadsUpManager.removeNotification( in fireNotificationPulse()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DHeadsUpCoordinator.kt516 hunMutator.removeNotification( in <lambda>()
531 hunMutator.removeNotification(posted.key, shouldRemoveImmediately) in <lambda>()
652 mHeadsUpManager.removeNotification( in <lambda>()
680 mHeadsUpManager.removeNotification( in <lambda>()
883 mHeadsUpManager.removeNotification( in <lambda>()
894 mHeadsUpManager.removeNotification( in <lambda>()
1055 fun removeNotification(key: String, releaseImmediately: Boolean) in updateNotification() method
1069 override fun removeNotification(key: String, releaseImmediately: Boolean) { in updateNotification() method in com.android.systemui.statusbar.notification.collection.coordinator.HunMutatorImpl
1076 headsUpManager.removeNotification(key, releaseImmediately, "commitModifications") in updateNotification()
DBubbleCoordinator.java125 public void removeNotification(
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/headsup/
DHeadsUpManagerImplTest.kt296 underTest.removeNotification( in testRemoveNotification_notPinnedByUser_removeDeferred()
313 underTest.removeNotification( in testRemoveNotification_isPinnedByUser_removeDeferred()
329 underTest.removeNotification(entry.key, /* releaseImmediately= */ true, "forceRemove") in testRemoveNotification_notPinnedByUser_forceRemove()
342 underTest.removeNotification(entry.key, /* releaseImmediately= */ true, "forceRemove") in testRemoveNotification_isPinnedByUser_forceRemove()
428 underTest.removeNotification( in testRemoveNotification_beforeMinimumDisplayTime_notUserInitiatedHun()
456 underTest.removeNotification( in testRemoveNotification_afterMinimumDisplayTime_notUserInitiatedHun()
475 underTest.removeNotification( in testRemoveNotification_beforeMinimumDisplayTime_forUserInitiatedHun()
506 underTest.removeNotification( in testRemoveNotification_afterMinimumDisplayTime_forUserInitiatedHun()
523 underTest.removeNotification( in testRemoveNotification_releaseImmediately()
561 underTest.removeNotification( in testSwipedOutNotification_notPinnedByUser()
[all …]
/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/
DDynamicSystemInstallationService.java268 boolean removeNotification = false; in onResult()
272 removeNotification = true; in onResult()
290 resetTaskAndStop(removeNotification); in onResult()
487 private void resetTaskAndStop(boolean removeNotification) { in resetTaskAndStop() argument
489 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : STOP_FOREGROUND_DETACH); in resetTaskAndStop()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DHeadsUpCoordinatorTest.kt226 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false), anyString()) in <lambda>()
227 verify(headsUpManager, times(1)).removeNotification(anyString(), eq(true), anyString()) in <lambda>()
242 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false), anyString()) in <lambda>()
243 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(true), anyString()) in <lambda>()
256 verify(headsUpManager, never()).removeNotification(anyString(), any(), anyString()) in <lambda>()
273 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any(), anyString()) in <lambda>()
288 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any(), anyString()) in <lambda>()
300 verify(headsUpManager, never()).removeNotification(anyString(), eq(false), anyString()) in <lambda>()
301 verify(headsUpManager, never()).removeNotification(anyString(), eq(true), anyString()) in <lambda>()
312 verify(headsUpManager, times(1)).removeNotification(anyString(), eq(false), anyString()) in <lambda>()
[all …]
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DNotificationListenerController.java80 void removeNotification(StatusBarNotification sbn); in removeNotification() method
/frameworks/base/core/java/android/app/
DService.java885 public final void stopForeground(boolean removeNotification) { in stopForeground() argument
886 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : STOP_FOREGROUND_LEGACY); in stopForeground()
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
DBubblesManager.java358 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in BubblesManager()
554 cb.removeNotification(children.get(i), in handleDismissalInterception()
560 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in handleDismissalInterception()
731 void removeNotification(@NonNull NotificationEntry entry,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationTransitionAnimatorController.kt178 headsUpManager.removeNotification( in removeHun()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarterTest.java435 verify(mHeadsUpManager).removeNotification( in testOnNotificationBubbleIconClicked_unbubble_keyGuardShowing()
461 verify(mHeadsUpManager).removeNotification( in testOnNotificationBubbleIconClicked_bubble_keyGuardShowing()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java723 verify(mNotifCallback, never()).removeNotification(eq(mRow), any(), anyInt()); in testRemoveBubble_withDismissedNotif_inOverflow()
746 verify(mNotifCallback, times(1)).removeNotification(eq(mRow), in testRemoveBubble_withDismissedNotif_notInOverflow()
1348 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
1350 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
1352 verify(mNotifCallback, never()).removeNotification(eq(groupedBubble), in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
1390 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren_row()
1392 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren_row()
1394 verify(mNotifCallback, never()).removeNotification(eq(groupedBubble.getEntry()), in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren_row()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationChildrenContainer.java397 public void removeNotification(ExpandableNotificationRow row) {
DNotificationStackScrollLayoutController.java675 mHeadsUpManager.removeNotification(
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java1162 mChildrenContainer.removeNotification(row);
1180 mChildrenContainer.removeNotification(child);