Home
last modified time | relevance | path

Searched refs:notificationId (Results 1 – 11 of 11) 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.java131 public int notificationId; field in GpsNetInitiatedHandler.GpsNiNotification
273 + " notificationId: " + notif.notificationId in handleNiNotification()
310 mNetInitiatedListener.sendNiResponse(notif.notificationId, in handleNi()
331 mNetInitiatedListener.sendNiResponse(notif.notificationId, in handleNi()
344 + " notificationId: " + notif.notificationId); in handleNiInEs()
360 mNetInitiatedListener.sendNiResponse(notif.notificationId, in handleNiInEs()
383 if (DEBUG) Log.d(TAG, "setNiNotification, notifyId: " + notif.notificationId + in setNiNotification()
413 notificationManager.notifyAsUser(null, notif.notificationId, mNiNotificationBuilder.build(), in setNiNotification()
422 if (DEBUG) Log.d(TAG, "openNiDialog, notifyId: " + notif.notificationId + in openNiDialog()
442 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.java4746 public void removeForegroundServiceFlagFromNotification(String pkg, int notificationId,
4754 mEnqueuedNotifications, pkg, null, notificationId, userId);
4761 mNotificationList, pkg, null, notificationId, userId);
/frameworks/base/services/core/java/com/android/server/location/
DGnssLocationProvider.java1836 public boolean sendNiResponse(int notificationId, int userResponse) {
1840 Log.d(TAG, "sendNiResponse, notifId: " + notificationId +
1843 native_send_ni_response(notificationId, userResponse);
1847 notificationId,
1873 int notificationId,
1884 Log.i(TAG, "notificationId: " + notificationId +
1897 notification.notificationId = notificationId;
1913 notification.notificationId,
2324 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.java865 private void hideNotification(int notificationId) { in hideNotification() argument
870 manager.cancelAsUser(TAG, notificationId, UserHandle.ALL); in hideNotification()
/frameworks/base/services/core/java/com/android/server/net/
DNetworkPolicyManagerService.java1244 final NotificationId notificationId = beforeNotifs.valueAt(i); local
1245 if (!mActiveNotifs.contains(notificationId)) {
1246 cancelNotification(notificationId);
1340 final NotificationId notificationId = new NotificationId(policy, type); in enqueueNotification() local
1471 mContext.getSystemService(NotificationManager.class).notifyAsUser(notificationId.getTag(), in enqueueNotification()
1472 notificationId.getId(), builder.build(), UserHandle.ALL); in enqueueNotification()
1473 mActiveNotifs.add(notificationId); in enqueueNotification()
1476 private void cancelNotification(NotificationId notificationId) { in cancelNotification() argument
1477 mContext.getSystemService(NotificationManager.class).cancel(notificationId.getTag(), in cancelNotification()
1478 notificationId.getId()); in cancelNotification()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DServiceStateTracker.java4254 int notificationId = CS_NOTIFICATION; in setNotification() local
4267 notificationId = PS_NOTIFICATION; in setNotification()
4276 notificationId = PS_NOTIFICATION; in setNotification()
4306 notificationId = CS_REJECT_CAUSE_NOTIFICATION; in setNotification()
4348 notificationManager.cancel(Integer.toString(mSubId), notificationId); in setNotification() local
4365 notificationManager.notify(Integer.toString(mSubId), notificationId, mNotification); in setNotification() local
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhone.java2129 final int notificationId = 1;
2134 notificationManager.notify(notificationTag, notificationId,
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp1262 notification.notificationId, notification.niType, in niNotifyCb()