Searched defs:activities (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java112 public ActivityInfo[] activities; field in class:PackageInfo
308 dest.writeTypedArray(activities, parcelableFlags);
357 activities = source.createTypedArray(ActivityInfo.CREATOR);
H A DPackageParser.java460 int N = p.activities.size();
463 pi.activities = new ActivityInfo[N];
467 if (p.activities.get(i).info.enabled) num++;
469 pi.activities = new ActivityInfo[num];
472 final Activity activity = p.activities.get(i);
475 pi.activities[j++] = generateActivityInfo(p.activities.get(i), flags,
2684 owner.activities.add(a);
2720 owner.activities.add(a);
2825 if (pkg == null || pkg.activities
4299 public final ArrayList<Activity> activities = new ArrayList<Activity>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java66 * contain the MIME type in its type field. This allows activities to register
72 * {@link #ACTION_TECH_DISCOVERED}. If any activities respond to this intent neither
82 * Intent to start an activity when a tag is discovered and activities are registered for the
130 * {@link #ACTION_TAG_DISCOVERED}. If any activities respond to {@link #ACTION_NDEF_DISCOVERED}
131 * this intent will not be started. If any activities respond to this intent
140 * <p>This intent will not be started when a tag is discovered if any activities respond to
916 * messages completely (for all activities), you can include a
925 * <p>The API allows for multiple activities to be specified at a time,
955 * @param activities optional additional activities, howeve
959 setNdefPushMessage(NdefMessage message, Activity activity, Activity ... activities) argument
1061 setNdefPushMessageCallback(CreateNdefMessageCallback callback, Activity activity, Activity ... activities) argument
1135 setOnNdefPushCompleteCallback(OnNdefPushCompleteCallback callback, Activity activity, Activity ... activities) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java54 * activities that can handle the given intent and order found activities
57 * choice history the file can be omitted, thus the activities will be ordered
65 * activities and they may be inconsistent with the functionality of some of the clients.
114 * Defines a sorter that is responsible for sorting the activities
120 * Sorts the <code>activities</code> in descending order of relevance
124 * @param activities Activities to be sorted.
129 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
240 * List of activities that can handle the current intent.
270 * The sorter for ordering activities base
945 sort(Intent intent, List<ActivityResolveInfo> activities, List<HistoricalRecord> historicalRecords) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java49 * activities that can handle the given intent and order found activities
52 * choice history the file can be omitted, thus the activities will be ordered
60 * activities and they may be inconsistent with the functionality of some of the clients.
109 * Defines a sorter that is responsible for sorting the activities
115 * Sorts the <code>activities</code> in descending order of relevance
119 * @param activities Activities to be sorted.
124 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
235 * List of activities that can handle the current intent.
260 * The sorter for ordering activities base
923 sort(Intent intent, List<ActivityResolveInfo> activities, List<HistoricalRecord> historicalRecords) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java102 boolean hasClientActivities; // Are there any client services with activities?
105 boolean foregroundActivities; // Running any activities that are foreground?
106 boolean repForegroundActivities; // Last reported foreground activities.
149 // all activities running in the process
150 final ArrayList<ActivityRecord> activities = new ArrayList<>(); field in class:ProcessRecord
362 if (activities.size() > 0) {
364 for (int i=0; i<activities.size(); i++) {
365 pw.print(prefix); pw.print(" - "); pw.println(activities.get(i));
481 * This method returns true if any of the activities within the process record are interesting
485 final int size = activities
[all...]
H A DTaskRecord.java121 boolean hasBeenVisible; // Set if any activities in the task have been visible to the user.
126 int numFullscreen; // Number of fullscreen activities.
154 /** List of all activities in the task arranged in history order */
251 int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities,
280 mActivities = activities;
558 // All activities of this task are finishing. As we ought to have a frontOfTask
603 // Otherwise make all added activities match this one.
637 * Completely remove all activities associated with an existing
662 * Completely remove all activities associated with an existing task.
675 * activities o
247 TaskRecord(ActivityManagerService service, int _taskId, Intent _intent, Intent _affinityIntent, String _affinity, String _rootAffinity, ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset, boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId, int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities, long _firstActiveTime, long _lastActiveTime, long lastTimeMoved, boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription, int taskAffiliation, int prevTaskId, int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage, boolean resizeable, boolean privileged) argument
[all...]

Completed in 248 milliseconds