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

  /frameworks/base/services/core/java/com/android/server/pm/
CrossProfileIntentResolver.java 25 * Used to find a list of {@link CrossProfileIntentFilter}s that match an intent.
28 extends IntentResolver<CrossProfileIntentFilter, CrossProfileIntentFilter> {
30 protected CrossProfileIntentFilter[] newArray(int size) {
31 return new CrossProfileIntentFilter[size];
35 protected boolean isPackageForFilter(String packageName, CrossProfileIntentFilter filter) {
40 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 {
39 private static final String TAG = "CrossProfileIntentFilter";
46 CrossProfileIntentFilter(IntentFilter filter, String ownerPackage, int targetUserId,
66 CrossProfileIntentFilter(XmlPullParser parser) throws XmlPullParserException, IOException {
132 return "CrossProfileIntentFilter{0x" + Integer.toHexString(System.identityHashCode(this))
136 boolean equalsIgnoreFilter(CrossProfileIntentFilter other) {
Settings.java     [all...]
PackageManagerService.java     [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
CrossProfileIntentFiltersSetter.java 38 import com.android.managedprovisioning.task.CrossProfileIntentFilter.Direction;
52 private static final CrossProfileIntentFilter EMERGENCY_CALL_MIME =
53 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, SKIP_CURRENT_PROFILE, false)
66 private static final CrossProfileIntentFilter EMERGENCY_CALL_DATA =
67 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, SKIP_CURRENT_PROFILE, false)
78 private static final CrossProfileIntentFilter DIAL_MIME =
79 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, ONLY_IF_NO_MATCH_FOUND, false)
92 private static final CrossProfileIntentFilter DIAL_DATA =
93 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, ONLY_IF_NO_MATCH_FOUND, false)
107 private static final CrossProfileIntentFilter DIAL_RAW
    [all...]
CrossProfileIntentFilter.java 33 final class CrossProfileIntentFilter {
69 private CrossProfileIntentFilter(IntentFilter filter, int flags, @Direction int direction,
113 CrossProfileIntentFilter build() {
114 return new CrossProfileIntentFilter(mFilter, mFlags, mDirection,
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
CrossProfileIntentFilterTest.java 25 import com.android.managedprovisioning.task.CrossProfileIntentFilter.Direction;
30 * Unit tests for {@link CrossProfileIntentFilter}.
49 CrossProfileIntentFilter filter =
50 new CrossProfileIntentFilter.Builder(TEST_DIRECTION, TEST_FLAGS,
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-0.jar 

Completed in 197 milliseconds