/frameworks/base/core/java/com/android/internal/app/ |
D | NetInitiatedActivity.java | 51 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/ |
D | GpsNetInitiatedHandler.java | 100 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/ |
D | StorageNotification.java | 341 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/ |
D | GpsLocationProvider.java | 1476 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/ |
D | GsmServiceStateTracker.java | 1597 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/ |
D | AccountManagerServiceTest.java | 255 …protected void installNotification(final int notificationId, final Notification n, UserHandle user… in installNotification() argument
|
/frameworks/base/docs/html/google/play/billing/v2/ |
D | billing_reference.jd | 365 <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
|
D | billing_subscriptions.jd | 83 [{ "notificationId" : "android.test.purchased",
|
D | api.jd | 279 [{ "notificationId" : "android.test.purchased",
|
/frameworks/base/services/java/com/android/server/accounts/ |
D | AccountManagerService.java | 2477 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()
|