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.java27 static void startActivities(Context context, Intent[] intents) { argument
28 context.startActivities(intents);
/frameworks/support/v4/java/android/support/v4/content/
H A DContextCompat.java52 * @param intents Array of intents defining the activities that will be started. The element
56 public static boolean startActivities(Context context, Intent[] intents) { argument
57 return startActivities(context, intents, null);
81 * @param intents Array of intents defining the activities that will be started. The element
87 public static boolean startActivities(Context context, Intent[] intents, argument
91 ContextCompatJellybean.startActivities(context, intents, options);
94 ContextCompatHoneycomb.startActivities(context, 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/app/
H A DTaskStackBuilder.java73 PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
78 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
80 Intent topIntent = new Intent(intents[intents.length - 1]);
87 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
89 intents[0] = new Intent(intents[0]).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
93 intents, flags);
98 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode, argument
100 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
312 * This is because it is the most specific of the supplied intents, and the
313 * UI the user actually sees when the intents are started.
320 * @param intents Array of Intents of the activities to be launched.
332 Intent[] intents, int flags) {
333 return getActivities(context, requestCode, intents, flags, null);
358 * This is because it is the most specific of the supplied intents, and the
359 * UI the user actually sees when the intents are started.
366 * @param intents Array of Intents of the activities to be launched.
378 Intent[] intents, in
331 getActivities(Context context, int requestCode, Intent[] intents, int flags) argument
377 getActivities(Context context, int requestCode, Intent[] intents, int flags, Bundle options) argument
402 getActivitiesAsUser(Context context, int requestCode, Intent[] intents, int flags, Bundle options, UserHandle user) argument
[all...]
H A DApplicationThreadNative.java735 public void scheduleNewIntent(List<Intent> intents, IBinder token) argument
739 data.writeTypedList(intents);
H A DContextImpl.java142 "BroadcastReceiver components are not allowed to register to receive intents");
155 "BroadcastReceiver components are not allowed to register to receive intents");
968 public void startActivities(Intent[] intents) { argument
970 startActivities(intents, null);
975 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
976 if ((intents[0].getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
984 (Activity)null, intents, options, userHandle.getIdentifier());
988 public void startActivities(Intent[] intents, Bundle options) { argument
990 if ((intents[0].getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
998 (Activity)null, intents, option
[all...]
H A DInstrumentation.java434 * @param which The set of intents this monitor is responsible for.
611 * @param filter The set of intents this monitor is responsible for.
1432 IBinder token, Activity target, Intent[] intents, Bundle options) {
1433 execStartActivitiesAsUser(who, contextThread, token, target, intents, options,
1446 IBinder token, Activity target, Intent[] intents, Bundle options,
1454 if (am.match(who, null, intents[0])) {
1465 String[] resolvedTypes = new String[intents.length];
1466 for (int i=0; i<intents.length; i++) {
1467 intents[i].setAllowFds(false);
1468 resolvedTypes[i] = intents[
1431 execStartActivities(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options) argument
1445 execStartActivitiesAsUser(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options, int userId) argument
[all...]
H A DActivityManagerNative.java1528 Intent[] intents = data.createTypedArray(Intent.CREATOR);
1534 int result = startActivities(app, intents, resolvedTypes, resultTo,
2951 int requestCode, Intent[] intents, String[] resolvedTypes, int flags,
2961 if (intents != null) {
2963 data.writeTypedArray(intents, 0);
3740 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
3746 data.writeTypedArray(intents, 0);
2949 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
3739 startActivities(IApplicationThread caller, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
H A DActivity.java2779 * @param builder An empty TaskStackBuilder - the application should add intents representing
2792 * If any extra data should be added to these intents before launching the new task,
3574 * @param intents The intents to start.
3582 public void startActivities(Intent[] intents) { argument
3583 startActivities(intents, null);
3598 * @param intents The intents to start.
3609 public void startActivities(Intent[] intents, Bundle options) { argument
3611 mToken, this, intents, option
[all...]
H A DIActivityManager.java177 int requestCode, Intent[] intents, String[] resolvedTypes,
314 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
175 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
313 startActivities(IApplicationThread caller, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
H A DActivityThread.java344 List<Intent> intents; field in class:ActivityThread.NewIntentData
347 return "NewIntentData{intents=" + intents + " token=" + token + "}";
631 public final void scheduleNewIntent(List<Intent> intents, IBinder token) { argument
633 data.intents = intents;
2293 List<Intent> intents) {
2294 final int N = intents.size();
2296 Intent intent = intents.get(i);
2304 List<Intent> intents) {
2292 deliverNewIntents(ActivityClientRecord r, List<Intent> intents) argument
2303 performNewIntents(IBinder token, List<Intent> intents) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContextWrapper.java305 public void startActivities(Intent[] intents) { argument
306 mBase.startActivities(intents);
310 public void startActivities(Intent[] intents, Bundle options) { argument
311 mBase.startActivities(intents, options);
316 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
317 mBase.startActivitiesAsUser(intents, options, userHandle);
H A DContext.java55 * broadcasting and receiving intents, etc.
974 * @param intents An array of Intents to be started.
981 public abstract void startActivities(Intent[] intents); argument
997 * @param intents An array of Intents to be started.
1007 public abstract void startActivities(Intent[] intents, Bundle options); argument
1024 * @param intents An array of Intents to be started.
1035 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
1470 * broadcast intents to your receiver, or have the receiver run in
1741 * <dd> A {@link android.app.AlarmManager} for receiving intents at the
1853 * {@link android.accounts.AccountManager} for receiving intents a
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java263 public void startActivities(Intent[] intents) { argument
268 public void startActivities(Intent[] intents, Bundle options) { argument
269 startActivities(intents);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java2251 a.intents.add(intent);
2284 a.info.exported = a.intents.size() > 0;
2424 a.intents.add(intent);
2446 a.info.exported = a.intents.size() > 0;
2844 s.intents.add(intent);
2865 s.info.exported = s.intents.size() > 0;
3327 public final ArrayList<II> intents; field in class:PackageParser.Component
3336 intents = null;
3342 intents = new ArrayList<II>(0);
3409 intents
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java2810 // intents for the top activity, so make sure
3229 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
3231 if (intents == null) {
3232 throw new NullPointerException("intents is null");
3237 if (intents.length != resolvedTypes.length) {
3238 throw new IllegalArgumentException("intents are length different than resolvedTypes");
3256 for (int i=0; i<intents.length; i++) {
3257 Intent intent = intents[i];
3285 if (options != null && i == intents.length-1) {
3228 startActivities(IApplicationThread caller, int callingUid, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
H A DActivityManagerService.java321 * List of intents that were used to start the most recent tasks.
512 * Resolver for broadcast intents to registered receivers.
551 * sticky Intent, values are an ArrayList of all broadcasted intents with
2644 Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options,
2649 int ret = mMainStack.startActivities(caller, -1, intents, resolvedTypes, resultTo,
2655 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
2660 int ret = mMainStack.startActivities(null, uid, intents, resolvedTypes, resultTo,
3934 // Remove pending intents. For now we only do this when force
3937 // such packages, so they can be left with bad pending intents.
4541 int requestCode, Intent[] intents, Strin
2643 startActivities(IApplicationThread caller, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
2654 startActivitiesInPackage(int uid, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
4539 getIntentSender(int type, String packageName, IBinder token, String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes, int flags, Bundle options, int userId) argument
4610 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 1001 milliseconds