Searched refs:fillIn (Results 1 - 7 of 7) sorted by relevance

/packages/services/Mms/src/com/android/mms/service/
H A DMmsRequest.java221 Intent fillIn = new Intent();
223 succeeded = transferResponse(fillIn, response);
226 fillIn.putExtra("uri", messageUri.toString());
229 fillIn.putExtra(SmsManager.EXTRA_MMS_HTTP_STATUS, httpStatusCode);
235 pendingIntent.send(context, result, fillIn);
327 * @param fillIn the intent that will be returned to the caller
331 protected abstract boolean transferResponse(Intent fillIn, byte[] response); argument
H A DSendRequest.java329 * @param fillIn the intent that will be returned to the caller
333 protected boolean transferResponse(Intent fillIn, byte[] response) { argument
336 fillIn.putExtra(SmsManager.EXTRA_MMS_DATA, response);
H A DDownloadRequest.java238 * @param fillIn the intent that will be returned to the caller
242 protected boolean transferResponse(Intent fillIn, final byte[] response) { argument
/packages/apps/Messaging/src/android/support/v7/mms/
H A DSendRequest.java63 protected boolean transferResponse(final Context context, final Intent fillIn, argument
66 if (response != null && fillIn != null) {
72 fillIn.putExtra(SmsManager.EXTRA_MMS_DATA, response);
H A DMmsRequest.java61 * @param fillIn the content of pending intent to be returned
65 protected abstract boolean transferResponse(Context context, Intent fillIn, byte[] response); argument
264 final Intent fillIn = new Intent();
266 if (!transferResponse(context, fillIn, response)) {
273 fillIn.putExtra(SmsManager.EXTRA_MMS_HTTP_STATUS, httpStatusCode);
276 mPendingIntent.send(context, result, fillIn);
H A DDownloadRequest.java53 protected boolean transferResponse(Context context, Intent fillIn, byte[] response) { argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
H A DGoogleSearch.java159 private boolean launchPendingIntent(PendingIntent pending, Intent fillIn) { argument
161 pending.send(this, Activity.RESULT_OK, fillIn);

Completed in 99 milliseconds