Searched defs:notificationId (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMediaSessionService2.java215 * @param notificationId notification id to be used for
220 public MediaNotification(int notificationId, @NonNull Notification notification) { argument
222 this, notificationId, notification);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerInternal.java27 void removeForegroundServiceFlagFromNotification(String pkg, int notificationId, int userId); argument
/frameworks/av/packages/MediaComponents/src/com/android/media/
H A DMediaSessionService2Impl.java150 public MediaNotificationImpl(MediaNotification instance, int notificationId, argument
155 mNotificationId = notificationId;
/frameworks/base/core/java/com/android/internal/app/
H A DNetInitiatedActivity.java51 private int notificationId = -1; field in class:NetInitiatedActivity
71 if (notificationId != -1) {
97 notificationId = intent.getIntExtra(GpsNetInitiatedHandler.NI_INTENT_KEY_NOTIF_ID, -1);
100 if (DEBUG) Log.d(TAG, "onCreate() : notificationId: " + notificationId + " timeout: " + timeout + " default_response:" + default_response);
133 notificationId = -1;
141 locationManager.sendNiResponse(notificationId, response);
146 notificationId = notifId;
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaSessionService2.java274 * @param notificationId notification id to be used for
279 public MediaNotification(int notificationId, @NonNull Notification notification) { argument
283 mNotificationId = notificationId;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierServiceStateTracker.java304 public void cancelNotification(int notificationId) { argument
306 removeMessages(notificationId);
307 getNotificationManager(context).cancel(notificationId);
/frameworks/av/packages/MediaComponents/src/com/android/media/update/
H A DApiFactory.java158 MediaNotification instance, int notificationId, Notification notification) {
160 instance, notificationId, notification);
157 createMediaSessionService2MediaNotification( MediaNotification instance, int notificationId, Notification notification) argument
/frameworks/base/media/java/android/media/update/
H A DStaticProvider.java94 MediaNotification mediaNotification, int notificationId, Notification notification);
93 createMediaSessionService2MediaNotification( MediaNotification mediaNotification, int notificationId, Notification notification) argument
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java124 public int notificationId; field in class:GpsNetInitiatedHandler.GpsNiNotification
254 + " notificationId: " + notif.notificationId
291 mNetInitiatedListener.sendNiResponse(notif.notificationId,
312 mNetInitiatedListener.sendNiResponse(notif.notificationId,
325 + " notificationId: " + notif.notificationId);
341 mNetInitiatedListener.sendNiResponse(notif.notificationId,
362 if (DEBUG) Log.d(TAG, "setNiNotification, notifyId: " + notif.notificationId +
392 notificationManager.notifyAsUser(null, notif.notificationId, mNiNotificationBuilde
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java2126 public boolean sendNiResponse(int notificationId, int userResponse) {
2130 Log.d(TAG, "sendNiResponse, notifId: " + notificationId +
2133 native_send_ni_response(notificationId, userResponse);
2144 int notificationId,
2155 Log.i(TAG, "notificationId: " + notificationId +
2168 notification.notificationId = notificationId;
2765 private native void native_send_ni_response(int notificationId, int userResponse); argument
2143 reportNiNotification( int notificationId, int niType, int notifyFlags, int timeout, int defaultResponse, String requestorId, String text, int requestorIdEncoding, int textEncoding ) argument
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkPolicyManagerService.java1209 final NotificationId notificationId = beforeNotifs.valueAt(i);
1210 if (!mActiveNotifs.contains(notificationId)) {
1211 cancelNotification(notificationId);
1302 final NotificationId notificationId = new NotificationId(policy, type);
1406 mContext.getSystemService(NotificationManager.class).notifyAsUser(notificationId.getTag(),
1407 notificationId.getId(), builder.build(), UserHandle.ALL);
1408 mActiveNotifs.add(notificationId);
1411 private void cancelNotification(NotificationId notificationId) { argument
1412 mContext.getSystemService(NotificationManager.class).cancel(notificationId.getTag(),
1413 notificationId
[all...]

Completed in 469 milliseconds