Home
last modified time | relevance | path

Searched refs:notificationId (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
DNetInitiatedActivity.java52 private int notificationId = -1; field in NetInitiatedActivity
72 if (notificationId != -1) {
98 notificationId = intent.getIntExtra(GpsNetInitiatedHandler.NI_INTENT_KEY_NOTIF_ID, -1); in onCreate()
101 …if (DEBUG) Log.d(TAG, "onCreate() : notificationId: " + notificationId + " timeout: " + timeout + … in onCreate()
134 notificationId = -1; in onClick()
142 locationManager.sendNiResponse(notificationId, response); in sendUserResponse()
148 notificationId = notifId; in handleNIVerify()
/frameworks/base/location/java/com/android/internal/location/
DGpsNetInitiatedHandler.java126 public int notificationId; field in GpsNetInitiatedHandler.GpsNiNotification
263 + " notificationId: " + notif.notificationId in handleNiNotification()
300 mNetInitiatedListener.sendNiResponse(notif.notificationId, in handleNi()
321 mNetInitiatedListener.sendNiResponse(notif.notificationId, in handleNi()
334 + " notificationId: " + notif.notificationId); in handleNiInEs()
350 mNetInitiatedListener.sendNiResponse(notif.notificationId, in handleNiInEs()
373 if (DEBUG) Log.d(TAG, "setNiNotification, notifyId: " + notif.notificationId + in setNiNotification()
403 notificationManager.notifyAsUser(null, notif.notificationId, mNiNotificationBuilder.build(), in setNiNotification()
412 if (DEBUG) Log.d(TAG, "openNiDialog, notifyId: " + notif.notificationId + in openNiDialog()
432 intent.putExtra(NI_INTENT_KEY_NOTIF_ID, notif.notificationId); in getDlgIntent()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerInternal.java27 void removeForegroundServiceFlagFromNotification(String pkg, int notificationId, int userId); in removeForegroundServiceFlagFromNotification() argument
DNotificationManagerService.java4613 public void removeForegroundServiceFlagFromNotification(String pkg, int notificationId,
4621 mEnqueuedNotifications, pkg, null, notificationId, userId);
4628 mNotificationList, pkg, null, notificationId, userId);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCarrierServiceStateTracker.java317 public void cancelNotification(int notificationId) { in cancelNotification() argument
319 removeMessages(notificationId); in cancelNotification()
320 getNotificationManager(context).cancel(notificationId); in cancelNotification()
DServiceStateTracker.java4049 int notificationId = CS_NOTIFICATION; in setNotification() local
4062 notificationId = PS_NOTIFICATION; in setNotification()
4071 notificationId = PS_NOTIFICATION; in setNotification()
4101 notificationId = CS_REJECT_CAUSE_NOTIFICATION; in setNotification()
4143 notificationManager.cancel(Integer.toString(mSubId), notificationId); in setNotification() local
4160 notificationManager.notify(Integer.toString(mSubId), notificationId, mNotification); in setNotification() local
/frameworks/base/services/core/java/com/android/server/location/
DGnssLocationProvider.java1799 public boolean sendNiResponse(int notificationId, int userResponse) {
1803 Log.d(TAG, "sendNiResponse, notifId: " + notificationId +
1806 native_send_ni_response(notificationId, userResponse);
1810 notificationId,
1836 int notificationId,
1847 Log.i(TAG, "notificationId: " + notificationId +
1860 notification.notificationId = notificationId;
1876 notification.notificationId,
2291 private native void native_send_ni_response(int notificationId, int userResponse);
/frameworks/base/media/apex/java/android/media/
DMediaSession2Service.java311 public MediaNotification(int notificationId, @NonNull Notification notification) { in MediaNotification() argument
315 mNotificationId = notificationId; in MediaNotification()
/frameworks/base/services/core/java/com/android/server/power/batterysaver/
DBatterySaverStateMachine.java856 private void hideNotification(int notificationId) { in hideNotification() argument
858 manager.cancel(notificationId); in hideNotification()
/frameworks/base/services/core/java/com/android/server/net/
DNetworkPolicyManagerService.java1237 final NotificationId notificationId = beforeNotifs.valueAt(i); local
1238 if (!mActiveNotifs.contains(notificationId)) {
1239 cancelNotification(notificationId);
1333 final NotificationId notificationId = new NotificationId(policy, type); in enqueueNotification() local
1464 mContext.getSystemService(NotificationManager.class).notifyAsUser(notificationId.getTag(), in enqueueNotification()
1465 notificationId.getId(), builder.build(), UserHandle.ALL); in enqueueNotification()
1466 mActiveNotifs.add(notificationId); in enqueueNotification()
1469 private void cancelNotification(NotificationId notificationId) { in cancelNotification() argument
1470 mContext.getSystemService(NotificationManager.class).cancel(notificationId.getTag(), in cancelNotification()
1471 notificationId.getId()); in cancelNotification()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhone.java1762 final int notificationId = 1;
1767 notificationManager.notify(notificationTag, notificationId,
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp1242 notification.notificationId, notification.niType, in niNotifyCb()