Searched defs:intents (Results 1 - 20 of 20) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DTaskStackBuilderHoneycomb.java28 Intent[] intents, int flags) {
29 return PendingIntent.getActivities(context, requestCode, intents, flags);
27 getActivitiesPendingIntent(Context context, int requestCode, Intent[] intents, int flags) argument
/frameworks/support/v4/honeycomb/android/support/v4/content/
H A DContextCompatHoneycomb.java29 static void startActivities(Context context, Intent[] intents) { argument
30 context.startActivities(intents);
/frameworks/support/v4/jellybean/android/support/v4/content/
H A DContextCompatJellybean.java25 public static void startActivities(Context context, Intent[] intents, Bundle options) { argument
26 context.startActivities(intents, options);
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DTaskStackBuilderJellybean.java27 Intent[] intents, int flags, Bundle options) {
28 return PendingIntent.getActivities(context, requestCode, intents, flags, options);
26 getActivitiesPendingIntent(Context context, int requestCode, Intent[] intents, int flags, Bundle options) argument
/frameworks/support/v4/java/android/support/v4/content/
H A DContextCompat.java66 * @param intents Array of intents defining the activities that will be started. The element
70 public static boolean startActivities(Context context, Intent[] intents) { argument
71 return startActivities(context, intents, null);
95 * @param intents Array of intents defining the activities that will be started. The element
101 public static boolean startActivities(Context context, Intent[] intents, argument
105 ContextCompatJellybean.startActivities(context, intents, options);
108 ContextCompatHoneycomb.startActivities(context, intents);
/frameworks/support/v4/java/android/support/v4/app/
H A DTaskStackBuilder.java77 PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
82 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
84 Intent topIntent = new Intent(intents[intents.length - 1]);
91 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
93 intents[0] = new Intent(intents[0]).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
97 intents, flags);
102 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
104 intents[
[all...]
/frameworks/base/core/java/android/app/
H A DPendingIntent.java146 * {@link #getService}. <p>This can be used if you are creating intents where only the
350 * This is because it is the most specific of the supplied intents, and the
351 * UI the user actually sees when the intents are started.
355 * you supply here should almost always be <em>explicit intents</em>,
362 * @param intents Array of Intents of the activities to be launched.
374 @NonNull Intent[] intents, @Flags int flags) {
375 return getActivities(context, requestCode, intents, flags, null);
400 * This is because it is the most specific of the supplied intents, and the
401 * UI the user actually sees when the intents are started.
405 * you supply here should almost always be <em>explicit intents</e
373 getActivities(Context context, int requestCode, @NonNull Intent[] intents, @Flags int flags) argument
423 getActivities(Context context, int requestCode, @NonNull Intent[] intents, @Flags int flags, @Nullable Bundle options) argument
449 getActivitiesAsUser(Context context, int requestCode, @NonNull Intent[] intents, int flags, Bundle options, UserHandle user) argument
[all...]
H A DApplicationThreadNative.java824 public void scheduleNewIntent(List<ReferrerIntent> intents, IBinder token) argument
828 data.writeTypedList(intents);
H A DInstrumentation.java446 * @param which The set of intents this monitor is responsible for.
623 * @param filter The set of intents this monitor is responsible for.
1516 IBinder token, Activity target, Intent[] intents, Bundle options) {
1517 execStartActivitiesAsUser(who, contextThread, token, target, intents, options,
1530 IBinder token, Activity target, Intent[] intents, Bundle options,
1538 if (am.match(who, null, intents[0])) {
1549 String[] resolvedTypes = new String[intents.length];
1550 for (int i=0; i<intents.length; i++) {
1551 intents[i].migrateExtraStreamToClipData();
1552 intents[
1515 execStartActivities(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options) argument
1529 execStartActivitiesAsUser(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options, int userId) argument
[all...]
H A DContextImpl.java181 "BroadcastReceiver components are not allowed to register to receive intents");
194 "BroadcastReceiver components are not allowed to register to receive intents");
1262 public void startActivities(Intent[] intents) { argument
1264 startActivities(intents, null);
1269 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
1270 if ((intents[0].getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
1278 (Activity)null, intents, options, userHandle.getIdentifier());
1282 public void startActivities(Intent[] intents, Bundle options) { argument
1284 if ((intents[0].getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
1292 (Activity)null, intents, option
[all...]
H A DActivity.java3121 * @param builder An empty TaskStackBuilder - the application should add intents representing
3134 * If any extra data should be added to these intents before launching the new task,
4024 * @param intents The intents to start.
4032 public void startActivities(Intent[] intents) { argument
4033 startActivities(intents, null);
4048 * @param intents The intents to start.
4059 public void startActivities(Intent[] intents, @Nullable Bundle options) { argument
4061 mToken, this, intents, option
[all...]
H A DActivityManagerNative.java1796 Intent[] intents = data.createTypedArray(Intent.CREATOR);
1802 int result = startActivities(app, callingPackage, intents, resolvedTypes, resultTo,
3751 int requestCode, Intent[] intents, String[] resolvedTypes, int flags,
3761 if (intents != null) {
3763 data.writeTypedArray(intents, 0);
4667 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
4674 data.writeTypedArray(intents, 0);
3749 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
4666 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
H A DActivityThread.java366 List<ReferrerIntent> intents; field in class:ActivityThread.NewIntentData
369 return "NewIntentData{intents=" + intents + " token=" + token + "}";
662 public final void scheduleNewIntent(List<ReferrerIntent> intents, IBinder token) { argument
664 data.intents = intents;
2449 private void deliverNewIntents(ActivityClientRecord r, List<ReferrerIntent> intents) { argument
2450 final int N = intents.size();
2452 ReferrerIntent intent = intents.get(i);
2460 public final void performNewIntents(IBinder token, List<ReferrerIntent> intents) { argument
[all...]
H A DIActivityManager.java204 int requestCode, Intent[] intents, String[] resolvedTypes,
359 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
202 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
358 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
/frameworks/base/core/java/android/content/
H A DContextWrapper.java344 public void startActivities(Intent[] intents) { argument
345 mBase.startActivities(intents);
349 public void startActivities(Intent[] intents, Bundle options) { argument
350 mBase.startActivities(intents, options);
355 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
356 mBase.startActivitiesAsUser(intents, options, userHandle);
H A DContext.java67 * broadcasting and receiving intents, etc.
1260 * @param intents An array of Intents to be started.
1267 public abstract void startActivities(Intent[] intents); argument
1283 * @param intents An array of Intents to be started.
1293 public abstract void startActivities(Intent[] intents, Bundle options); argument
1310 * @param intents An array of Intents to be started.
1321 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
1828 * broadcast intents to your receiver, or have the receiver run in
2169 * <dd> A {@link android.app.AlarmManager} for receiving intents at the
2294 * {@link android.accounts.AccountManager} for receiving intents a
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java286 public void startActivities(Intent[] intents) { argument
291 public void startActivities(Intent[] intents, Bundle options) { argument
292 startActivities(intents);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java3196 a.intents.add(intent);
3244 a.info.exported = a.intents.size() > 0;
3388 a.intents.add(intent);
3410 a.info.exported = a.intents.size() > 0;
3562 outInfo.intents.add(intent);
3821 s.intents.add(intent);
3842 s.info.exported = s.intents.size() > 0;
4432 public final ArrayList<II> intents; field in class:PackageParser.Component
4441 intents = null;
4447 intents
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java1007 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
1009 if (intents == null) {
1010 throw new NullPointerException("intents is null");
1015 if (intents.length != resolvedTypes.length) {
1016 throw new IllegalArgumentException("intents are length different than resolvedTypes");
1033 for (int i=0; i<intents.length; i++) {
1034 Intent intent = intents[i];
1062 if (options != null && i == intents.length-1) {
1927 // intents for the top activity, so make sure
1006 startActivities(IApplicationThread caller, int callingUid, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
H A DActivityManagerService.java430 * List of intents that were used to start the most recent tasks.
704 * Resolver for broadcast intents to registered receivers.
743 * sticky Intent, values are an ArrayList of all broadcasted intents with
3681 Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options,
3687 int ret = mStackSupervisor.startActivities(caller, -1, callingPackage, intents,
3693 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
3699 int ret = mStackSupervisor.startActivities(null, uid, callingPackage, intents, resolvedTypes,
4195 // Either task and tr are the same or, their affinities match or their intents match
5695 // Remove pending intents. For now we only do this when force
5698 // such packages, so they can be left with bad pending intents
3680 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
3692 startActivitiesInPackage(int uid, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
6424 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
6495 getIntentSenderLocked(int type, String packageName, int callingUid, int userId, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options) argument
[all...]

Completed in 3093 milliseconds