Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/
DNetInitiatedActivity.java51 private int notificationId = -1; field in NetInitiatedActivity
71 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()
147 notificationId = notifId; in handleNIVerify()
/frameworks/base/location/java/com/android/internal/location/
DGpsNetInitiatedHandler.java100 public int notificationId; field in GpsNetInitiatedHandler.GpsNiNotification
137 if (DEBUG) Log.d(TAG, "handleNiNotification" + " notificationId: " + notif.notificationId in handleNiNotification()
164 mLocationManager.sendNiResponse(notif.notificationId, GPS_NI_RESPONSE_ACCEPT); in handleNiNotification()
191 if (DEBUG) Log.d(TAG, "setNiNotification, notifyId: " + notif.notificationId + in setNiNotification()
216 notificationManager.notifyAsUser(null, notif.notificationId, mNiNotification, in setNiNotification()
225 if (DEBUG) Log.d(TAG, "openNiDialog, notifyId: " + notif.notificationId + in openNiDialog()
245 intent.putExtra(NI_INTENT_KEY_NOTIF_ID, notif.notificationId); in getDlgIntent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
DStorageNotification.java341 final int notificationId = mUsbStorageNotification.icon; in setUsbStorageNotification() local
343 notificationManager.notifyAsUser(null, notificationId, mUsbStorageNotification, in setUsbStorageNotification()
346 notificationManager.cancelAsUser(null, notificationId, UserHandle.ALL); in setUsbStorageNotification()
381 final int notificationId = mMediaStorageNotification.icon; in setMediaStorageNotification() local
382 notificationManager.cancel(notificationId); in setMediaStorageNotification()
414 final int notificationId = mMediaStorageNotification.icon; in setMediaStorageNotification() local
416 notificationManager.notifyAsUser(null, notificationId, in setMediaStorageNotification()
419 notificationManager.cancelAsUser(null, notificationId, UserHandle.ALL); in setMediaStorageNotification()
/frameworks/base/services/java/com/android/server/location/
DGpsLocationProvider.java1476 public boolean sendNiResponse(int notificationId, int userResponse)
1480 if (DEBUG) Log.d(TAG, "sendNiResponse, notifId: " + notificationId +
1482 native_send_ni_response(notificationId, userResponse);
1493 int notificationId, in reportNiNotification() argument
1506 Log.i(TAG, "notificationId: " + notificationId + in reportNiNotification()
1519 notification.notificationId = notificationId; in reportNiNotification()
1791 private native void native_send_ni_response(int notificationId, int userResponse); in native_send_ni_response() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmServiceStateTracker.java1597 int notificationId = CS_NOTIFICATION; in setNotification() local
1601 notificationId = PS_NOTIFICATION; in setNotification()
1605 notificationId = PS_NOTIFICATION; in setNotification()
1631 notificationManager.cancel(notificationId); in setNotification()
1634 notificationManager.notify(notificationId, mNotification); in setNotification()
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
DAccountManagerServiceTest.java255 …protected void installNotification(final int notificationId, final Notification n, UserHandle user… in installNotification() argument
/frameworks/base/docs/html/google/play/billing/v2/
Dbilling_reference.jd365 <td>notificationId</td>
367 <code>notificationId</code> corresponds to a specify message that is waiting to be retrieved on
368 the Google Play server. Your application sends back the <code>notificationId</code> with the
Dbilling_subscriptions.jd83 [{ "notificationId" : "android.test.purchased",
Dapi.jd279 [{ "notificationId" : "android.test.purchased",
/frameworks/base/services/java/com/android/server/accounts/
DAccountManagerService.java2477 final Integer notificationId = getSigninRequiredNotificationId(accounts, account); in doNotification() local
2478 intent.addCategory(String.valueOf(notificationId)); in doNotification()
2489 installNotification(notificationId, n, user); in doNotification()
2496 protected void installNotification(final int notificationId, final Notification n, in installNotification() argument
2499 .notifyAsUser(null, notificationId, n, user); in installNotification()