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.java62 * @param intents Array of intents defining the activities that will be started. The element
66 public static boolean startActivities(Context context, Intent[] intents) { argument
67 return startActivities(context, intents, null);
91 * @param intents Array of intents defining the activities that will be started. The element
97 public static boolean startActivities(Context context, Intent[] intents, argument
101 ContextCompatJellybean.startActivities(context, intents, options);
104 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.java118 * Intent. This can be used if you are creating intents where only the
322 * This is because it is the most specific of the supplied intents, and the
323 * UI the user actually sees when the intents are started.
327 * you supply here should almost always be <em>explicit intents</em>,
334 * @param intents Array of Intents of the activities to be launched.
346 Intent[] intents, int flags) {
347 return getActivities(context, requestCode, intents, flags, null);
372 * This is because it is the most specific of the supplied intents, and the
373 * UI the user actually sees when the intents are started.
377 * you supply here should almost always be <em>explicit intents</e
345 getActivities(Context context, int requestCode, Intent[] intents, int flags) argument
395 getActivities(Context context, int requestCode, Intent[] intents, int flags, Bundle options) argument
421 getActivitiesAsUser(Context context, int requestCode, Intent[] intents, int flags, Bundle options, UserHandle user) argument
[all...]
H A DApplicationThreadNative.java777 public void scheduleNewIntent(List<Intent> intents, IBinder token) argument
781 data.writeTypedList(intents);
H A DContextImpl.java149 "BroadcastReceiver components are not allowed to register to receive intents");
162 "BroadcastReceiver components are not allowed to register to receive intents");
1058 public void startActivities(Intent[] intents) { argument
1060 startActivities(intents, null);
1065 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
1066 if ((intents[0].getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
1074 (Activity)null, intents, options, userHandle.getIdentifier());
1078 public void startActivities(Intent[] intents, Bundle options) { argument
1080 if ((intents[0].getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
1088 (Activity)null, intents, option
[all...]
H A DInstrumentation.java441 * @param which The set of intents this monitor is responsible for.
618 * @param filter The set of intents this monitor is responsible for.
1439 IBinder token, Activity target, Intent[] intents, Bundle options) {
1440 execStartActivitiesAsUser(who, contextThread, token, target, intents, options,
1453 IBinder token, Activity target, Intent[] intents, Bundle options,
1461 if (am.match(who, null, intents[0])) {
1472 String[] resolvedTypes = new String[intents.length];
1473 for (int i=0; i<intents.length; i++) {
1474 intents[i].migrateExtraStreamToClipData();
1475 intents[
1438 execStartActivities(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options) argument
1452 execStartActivitiesAsUser(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options, int userId) argument
[all...]
H A DActivity.java2833 * @param builder An empty TaskStackBuilder - the application should add intents representing
2846 * If any extra data should be added to these intents before launching the new task,
3635 * @param intents The intents to start.
3643 public void startActivities(Intent[] intents) { argument
3644 startActivities(intents, null);
3659 * @param intents The intents to start.
3670 public void startActivities(Intent[] intents, Bundle options) { argument
3672 mToken, this, intents, option
[all...]
H A DActivityManagerNative.java1663 Intent[] intents = data.createTypedArray(Intent.CREATOR);
1669 int result = startActivities(app, callingPackage, intents, resolvedTypes, resultTo,
3283 int requestCode, Intent[] intents, String[] resolvedTypes, int flags,
3293 if (intents != null) {
3295 data.writeTypedArray(intents, 0);
4158 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
4165 data.writeTypedArray(intents, 0);
3281 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
4157 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
H A DActivityThread.java335 List<Intent> intents; field in class:ActivityThread.NewIntentData
338 return "NewIntentData{intents=" + intents + " token=" + token + "}";
632 public final void scheduleNewIntent(List<Intent> intents, IBinder token) { argument
634 data.intents = intents;
2308 List<Intent> intents) {
2309 final int N = intents.size();
2311 Intent intent = intents.get(i);
2319 List<Intent> intents) {
2307 deliverNewIntents(ActivityClientRecord r, List<Intent> intents) argument
2318 performNewIntents(IBinder token, List<Intent> intents) argument
[all...]
H A DIActivityManager.java190 int requestCode, Intent[] intents, String[] resolvedTypes,
338 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
188 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
337 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.java332 public void startActivities(Intent[] intents) { argument
333 mBase.startActivities(intents);
337 public void startActivities(Intent[] intents, Bundle options) { argument
338 mBase.startActivities(intents, options);
343 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
344 mBase.startActivitiesAsUser(intents, options, userHandle);
H A DContext.java57 * broadcasting and receiving intents, etc.
1133 * @param intents An array of Intents to be started.
1140 public abstract void startActivities(Intent[] intents); argument
1156 * @param intents An array of Intents to be started.
1166 public abstract void startActivities(Intent[] intents, Bundle options); argument
1183 * @param intents An array of Intents to be started.
1194 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
1648 * broadcast intents to your receiver, or have the receiver run in
1918 * <dd> A {@link android.app.AlarmManager} for receiving intents at the
2030 * {@link android.accounts.AccountManager} for receiving intents a
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java275 public void startActivities(Intent[] intents) { argument
280 public void startActivities(Intent[] intents, Bundle options) { argument
281 startActivities(intents);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java2473 a.intents.add(intent);
2521 a.info.exported = a.intents.size() > 0;
2662 a.intents.add(intent);
2684 a.info.exported = a.intents.size() > 0;
2831 outInfo.intents.add(intent);
3089 s.intents.add(intent);
3110 s.info.exported = s.intents.size() > 0;
3623 public final ArrayList<II> intents; field in class:PackageParser.Component
3632 intents = null;
3638 intents
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityStackSupervisor.java795 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
797 if (intents == null) {
798 throw new NullPointerException("intents is null");
803 if (intents.length != resolvedTypes.length) {
804 throw new IllegalArgumentException("intents are length different than resolvedTypes");
821 for (int i=0; i<intents.length; i++) {
822 Intent intent = intents[i];
851 if (options != null && i == intents.length-1) {
1531 // intents for the top activity, so make sure
794 startActivities(IApplicationThread caller, int callingUid, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
H A DActivityManagerService.java395 * List of intents that were used to start the most recent tasks.
638 * Resolver for broadcast intents to registered receivers.
677 * sticky Intent, values are an ArrayList of all broadcasted intents with
3308 Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options,
3314 int ret = mStackSupervisor.startActivities(caller, -1, callingPackage, intents,
3320 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
3326 int ret = mStackSupervisor.startActivities(null, uid, callingPackage, intents, resolvedTypes,
4691 // Remove pending intents. For now we only do this when force
4694 // such packages, so they can be left with bad pending intents.
5331 int requestCode, Intent[] intents, Strin
3307 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
3319 startActivitiesInPackage(int uid, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
5329 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
5400 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 243 milliseconds