/aosp12/packages/apps/Dialer/java/com/android/dialer/notification/ |
H A D | DialerNotificationManager.java | 57 getNotificationManager(context).notify(tag, id, notification); in notify() 71 NotificationManager notificationManager = getNotificationManager(context); in cancel() 92 NotificationManager notificationManager = getNotificationManager(context); in cancelAll() 103 return getNotificationManager(context).getActiveNotifications(); in getActiveNotifications() 135 private static NotificationManager getNotificationManager(@NonNull Context context) { in getNotificationManager() method in DialerNotificationManager
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
H A D | InstallCarrierAppUtils.java | 87 getNotificationManager(context).notify( in showNotification() 94 NotificationManager notificationManager = getNotificationManager(context); in hideAllNotifications() 109 getNotificationManager(context).cancel(pkgName, ACTIVATE_CELL_SERVICE_NOTIFICATION_ID); in hideNotification() 156 getNotificationManager(context).getActiveNotifications(); in isPackageInstallNotificationActive() 206 private static NotificationManager getNotificationManager(Context context) { in getNotificationManager() method in InstallCarrierAppUtils
|
/aosp12/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
H A D | RemoteBugreportManager.java | 108 mInjector.getNotificationManager().cancel(LOG_TAG, NOTIFICATION_ID); 205 mInjector.getNotificationManager().notifyAsUser(LOG_TAG, NOTIFICATION_ID, in requestBugreport() 244 mInjector.getNotificationManager().cancel(LOG_TAG, in onBugreportFinished() 248 mInjector.getNotificationManager().notifyAsUser(LOG_TAG, NOTIFICATION_ID, in onBugreportFinished() 260 mInjector.getNotificationManager().cancel(LOG_TAG, NOTIFICATION_ID); in onBugreportFailed() 275 mInjector.getNotificationManager().notifyAsUser(LOG_TAG, NOTIFICATION_ID, in onBugreportSharingAccepted() 326 mInjector.getNotificationManager().notifyAsUser(LOG_TAG, NOTIFICATION_ID, in checkForPendingBugreportAfterBoot()
|
H A D | CertificateMonitor.java | 160 mInjector.getNotificationManager().notifyAsUser( in updateInstalledCertificates() 163 mInjector.getNotificationManager().cancelAsUser( in updateInstalledCertificates()
|
H A D | DevicePolicyManagerService.java | 1386 NotificationManager getNotificationManager() { in getNotificationManager() method in Injector 7064 mInjector.getNotificationManager().notify(SystemMessage.NOTE_PROFILE_WIPED, notification); 7068 mInjector.getNotificationManager().cancel(SystemMessage.NOTE_PROFILE_WIPED); 12391 mInjector.getNotificationManager().notify(SystemMessage.NOTE_LOCATION_CHANGED, 15534 mInjector.getNotificationManager().notifyAsUser(/* tag= */ null, 15548 mInjector.getNotificationManager().cancelAsUser(/* tag= */ null, 17016 mInjector.getNotificationManager().cancel(SystemMessage.NOTE_PERSONAL_APPS_SUSPENDED); 17070 mInjector.getNotificationManager().notify(
|
/aosp12/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
H A D | CallServiceNotifier.java | 94 getNotificationManager(context).createNotificationChannel(channel); in updateNotification() 95 getNotificationManager(context).notify(CALL_NOTIFICATION_ID, getMainNotification(context)); in updateNotification() 96 getNotificationManager(context).notify( in updateNotification() 105 getNotificationManager(context).cancel(CALL_NOTIFICATION_ID); in cancelNotifications() 106 getNotificationManager(context).cancel(PHONE_ACCOUNT_NOTIFICATION_ID); in cancelNotifications() 220 private NotificationManager getNotificationManager(Context context) { in getNotificationManager() method in CallServiceNotifier
|
/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
H A D | BlockedNumbersUtilTests.java | 48 NotificationManager mgr = mComponentContextFixture.getNotificationManager(); in testPostNotification() 57 NotificationManager mgr = mComponentContextFixture.getNotificationManager(); in testDismissNotification()
|
H A D | ComponentContextFixture.java | 720 public NotificationManager getNotificationManager() {
|
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/ui/ |
H A D | NotificationChannelManager.java | 70 getNotificationManager(context).createNotificationChannel(channel); in createOrUpdateChannel() 145 private NotificationManager getNotificationManager(Context context) { in getNotificationManager() method in NotificationChannelManager
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | CarrierServiceStateTrackerTest.java | 103 doReturn(mNotificationManager).when(mSpyCarrierSST).getNotificationManager(any()); in testCancelBothNotifications() 124 doReturn(mNotificationManager).when(mSpyCarrierSST).getNotificationManager(any()); in testSendBothNotifications()
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | CarrierServiceStateTracker.java | 347 public NotificationManager getNotificationManager(Context context) { in getNotificationManager() method in CarrierServiceStateTracker 383 getNotificationManager(context).notify(notificationType.getNotificationTag(), in sendNotification() 393 getNotificationManager(context).cancel( in cancelNotification()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/ |
H A D | DevicePolicyManagerServiceTestable.java | 175 NotificationManager getNotificationManager() { in getNotificationManager() method in DevicePolicyManagerServiceTestable.MockInjector
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
H A D | DcTracker.java | 5715 getNotificationManager().notify(NOTIFICATION_TAG, mPhone.getPhoneId(), notification); in showProvisioningNotification() 5723 getNotificationManager().cancel(NOTIFICATION_TAG, mPhone.getPhoneId()); in hideProvisioningNotification() 5729 private NotificationManager getNotificationManager() { in getNotificationManager() method in DcTracker
|
/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/ |
H A D | LockSettingsService.java | 451 public NotificationManager getNotificationManager() { in getNotificationManager() method in LockSettingsService.Injector 586 mNotificationManager = injector.getNotificationManager(); in LockSettingsService()
|
/aosp12/frameworks/base/services/core/java/com/android/server/accounts/ |
H A D | AccountManagerService.java | 5409 INotificationManager notificationManager = mInjector.getNotificationManager(); 5430 INotificationManager service = mInjector.getNotificationManager(); 6397 INotificationManager getNotificationManager() {
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/ |
H A D | AccountManagerServiceTest.java | 3480 INotificationManager getNotificationManager() { in getNotificationManager() method in AccountManagerServiceTest.TestInjector
|
/aosp12/frameworks/base/services/ |
H A D | art-profile | 4942 HSPLcom/android/server/accounts/AccountManagerService$Injector;->getNotificationManager()Landroid/a… 16527 PLcom/android/server/devicepolicy/DevicePolicyManagerService$Injector;->getNotificationManager()Lan… 23330 HSPLcom/android/server/locksettings/LockSettingsService$Injector;->getNotificationManager()Landroid…
|