Home
last modified time | relevance | path

Searched refs:resolvedInfo (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DResumeOnRebootServiceProvider.java93 for (ResolveInfo resolvedInfo : resolvedIntents) { in resolveService()
94 if (resolvedInfo.serviceInfo != null in resolveService()
95 && PROVIDER_REQUIRED_PERMISSION.equals(resolvedInfo.serviceInfo.permission)) { in resolveService()
96 return resolvedInfo.serviceInfo; in resolveService()
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DRootWindowContainerTests.java938 final Pair<ActivityInfo, Intent> resolvedInfo = mRootWindowContainer in testResolveSecondaryHomeActivityWhenPrimaryHomeNotSet() local
941 assertEquals(aInfoSecondary.name, resolvedInfo.first.name); in testResolveSecondaryHomeActivityWhenPrimaryHomeNotSet()
943 resolvedInfo.first.applicationInfo.packageName); in testResolveSecondaryHomeActivityWhenPrimaryHomeNotSet()
971 assertEquals(aInfoSecondary.name, resolvedInfo.first.name); in testResolveSecondaryHomeActivityForced()
973 resolvedInfo.first.applicationInfo.packageName); in testResolveSecondaryHomeActivityForced()
993 assertEquals(aInfoSecondary.name, resolvedInfo.first.name); in testResolveSecondaryHomeActivityWhenPrimaryHomeNotSupportMultiDisplay()
995 resolvedInfo.first.applicationInfo.packageName); in testResolveSecondaryHomeActivityWhenPrimaryHomeNotSupportMultiDisplay()
1024 assertEquals(aInfoPrimary.name, resolvedInfo.first.name); in testResolveSecondaryHomeActivityWhenPrimaryHomeSupportMultiDisplay()
1026 resolvedInfo.first.applicationInfo.packageName); in testResolveSecondaryHomeActivityWhenPrimaryHomeSupportMultiDisplay()
1060 resolvedInfo.first.applicationInfo.packageName); in testResolveSecondaryHomeActivityWhenOtherActivitySupportMultiDisplay()
[all …]
/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DSuspendedAppActivity.java108 final ResolveInfo resolvedInfo = mPm.resolveActivityAsUser(moreDetailsIntent, in getMoreDetailsActivity() local
110 if (resolvedInfo != null && resolvedInfo.activityInfo != null in getMoreDetailsActivity()
111 && requiredPermission.equals(resolvedInfo.activityInfo.permission)) { in getMoreDetailsActivity()