Lines Matching refs:intent

108      * extra data in the Intent; by canceling the previous pending intent,
155 * @param intent The original Intent that was sent.
160 void onSendFinished(PendingIntent pendingIntent, Intent intent,
178 public void performReceive(Intent intent, int resultCode, String data,
180 mIntent = intent;
204 * you supply here should almost always be an <em>explicit intent</em>,
212 * @param intent Intent of the activity to be launched.
217 * of the intent that can be supplied when the actual send happens.
224 Intent intent, int flags) {
225 return getActivity(context, requestCode, intent, flags, null);
236 * you supply here should almost always be an <em>explicit intent</em>,
244 * @param intent Intent of the activity to be launched.
249 * of the intent that can be supplied when the actual send happens.
258 Intent intent, int flags, Bundle options) {
260 String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
263 intent.migrateExtraStreamToClipData();
264 intent.prepareToLeaveProcess();
268 null, null, requestCode, new Intent[] { intent },
280 * activity is started, not when the pending intent is created.
283 Intent intent, int flags, Bundle options, UserHandle user) {
285 String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
288 intent.migrateExtraStreamToClipData();
289 intent.prepareToLeaveProcess();
293 null, null, requestCode, new Intent[] { intent },
311 * The <em>first</em> intent in the array will be started outside of the context of an
319 * The <em>last</em> intent in the array represents the key for the
321 * (as done with the single intent given to {@link #getActivity(Context, int, Intent, int)},
342 * of the intent that can be supplied when the actual send happens.
362 * The <em>first</em> intent in the array will be started outside of the context of an
370 * The <em>last</em> intent in the array represents the key for the
372 * (as done with the single intent given to {@link #getActivity(Context, int, Intent, int)},
393 * of the intent that can be supplied when the actual send happens.
423 * activity is started, not when the pending intent is created.
451 * you supply here should almost always be an <em>explicit intent</em>,
459 * @param intent The Intent to be broadcast.
464 * of the intent that can be supplied when the actual send happens.
471 Intent intent, int flags) {
472 return getBroadcastAsUser(context, requestCode, intent, flags,
479 * broadcast is sent, not when the pending intent is created.
482 Intent intent, int flags, UserHandle userHandle) {
484 String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
487 intent.prepareToLeaveProcess();
491 null, null, requestCode, new Intent[] { intent },
506 * you supply here should almost always be an <em>explicit intent</em>,
514 * @param intent An Intent describing the service to be started.
519 * of the intent that can be supplied when the actual send happens.
526 Intent intent, int flags) {
528 String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
531 intent.prepareToLeaveProcess();
535 null, null, requestCode, new Intent[] { intent },
597 * @param intent Additional Intent data. See {@link Intent#fillIn
606 public void send(Context context, int code, Intent intent)
608 send(context, code, intent, null, null, null);
637 * <p>For the intent parameter, a PendingIntent
643 * <var>intent</var> is also null.
645 * @param intent Additional Intent data. See {@link Intent#fillIn
663 public void send(Context context, int code, Intent intent,
665 send(context, code, intent, onFinished, handler, null);
673 * <p>For the intent parameter, a PendingIntent
679 * <var>intent</var> is also null.
681 * @param intent Additional Intent data. See {@link Intent#fillIn
704 public void send(Context context, int code, Intent intent,
708 String resolvedType = intent != null ?
709 intent.resolveTypeIfNeeded(context.getContentResolver())
711 int res = mTarget.send(code, intent, resolvedType,