HomeSort by relevance Sort by last modified time
    Searched refs:CrossProfileIntentFilter (Results 1 - 4 of 4) sorted by null

  /frameworks/base/services/core/java/com/android/server/pm/
CrossProfileIntentResolver.java 26 * Used to find a list of {@link CrossProfileIntentFilter}s that match an intent.
29 extends IntentResolver<CrossProfileIntentFilter, CrossProfileIntentFilter> {
31 protected CrossProfileIntentFilter[] newArray(int size) {
32 return new CrossProfileIntentFilter[size];
36 protected boolean isPackageForFilter(String packageName, CrossProfileIntentFilter filter) {
41 protected void sortResults(List<CrossProfileIntentFilter> results) {
CrossProfileIntentFilter.java 29 * The {@link PackageManagerService} maintains some {@link CrossProfileIntentFilter}s for each user.
30 * If an {@link Intent} matches the {@link CrossProfileIntentFilter}, then activities in the user
33 class CrossProfileIntentFilter extends IntentFilter {
40 private static final String TAG = "CrossProfileIntentFilter";
44 final int mOwnerUserId; // userId of the app which has set this CrossProfileIntentFilter.
48 CrossProfileIntentFilter(IntentFilter filter, String ownerPackage, int ownerUserId,
73 CrossProfileIntentFilter(XmlPullParser parser) throws XmlPullParserException, IOException {
141 return "CrossProfileIntentFilter{0x" + Integer.toHexString(System.identityHashCode(this))
145 boolean equalsIgnoreFilter(CrossProfileIntentFilter other) {
Settings.java     [all...]
PackageManagerService.java     [all...]

Completed in 54 milliseconds