Home
last modified time | relevance | path

Searched refs:getComponentInfo (Results 1 – 25 of 33) sorted by relevance

12

/aosp12/packages/services/Car/packages/CarDeveloperOptions/tests/unit/src/com/android/car/developeroptions/
H A DCarDeveloperOptionsIntentTest.java57 if (!ACTIVITY_ALLOWLIST.contains(resolved.getComponentInfo().name)) { in testAvailableIntentActivities_onlyAllowlisted()
58 nonMatchingItems.add(resolved.getComponentInfo().name); in testAvailableIntentActivities_onlyAllowlisted()
71 nonMatchingItems.add(resolved.getComponentInfo().name); in testAvailableIntentServices_returnsZero()
83 nonMatchingItems.add(resolved.getComponentInfo().name); in testAvailableBroadcastReceivers_returnsZero()
95 nonMatchingItems.add(resolved.getComponentInfo().name); in testAvailableContentProviders_returnsZero()
/aosp12/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java200 public ComponentInfo getComponentInfo() { in getComponentInfo() method in ResolveInfo
229 ComponentInfo ci = getComponentInfo(); in loadLabel()
254 final ComponentInfo componentInfo = getComponentInfo(); in resolveLabelResId()
271 final ComponentInfo componentInfo = getComponentInfo(); in resolveIconResId()
294 ComponentInfo ci = getComponentInfo(); in loadIcon()
315 final ComponentInfo ci = getComponentInfo(); in getIconResourceInternal()
424 final ComponentInfo ci = getComponentInfo(); in toString()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
H A DDefaultAppInfo.java78 final ComponentInfo componentInfo = getComponentInfo(); in loadLabel()
102 final ComponentInfo componentInfo = getComponentInfo(); in loadIcon()
138 private ComponentInfo getComponentInfo() { in getComponentInfo() method in DefaultAppInfo
/aosp12/frameworks/base/packages/SettingsLib/Tile/src/com/android/settingslib/drawer/
H A DActivityTile.java57 protected ComponentInfo getComponentInfo(Context context) { in getComponentInfo() method in ActivityTile
77 final ComponentInfo info = getComponentInfo(context); in getComponentLabel()
H A DTile.java124 protected abstract ComponentInfo getComponentInfo(Context context); in getComponentInfo() method in Tile
297 final ComponentInfo componentInfo = getComponentInfo(context); in getIcon()
359 getComponentInfo(context); in ensureMetadataNotStale()
H A DProviderTile.java69 protected ComponentInfo getComponentInfo(Context context) { in getComponentInfo() method in ProviderTile
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/enterprise/apps/
H A DApplicationFeatureProviderImpl.java279 bestComponent = getComponentInfo(resolveInfo); in findEuiccService()
289 final ComponentInfo componentInfo = getComponentInfo(resolveInfo); in isValidEuiccComponent()
324 private ComponentInfo getComponentInfo(ResolveInfo resolveInfo) { in getComponentInfo() method in ApplicationFeatureProviderImpl
/aosp12/packages/apps/Settings/src/com/android/settings/applications/
H A DApplicationFeatureProviderImpl.java284 bestComponent = getComponentInfo(resolveInfo); in findEuiccService()
294 final ComponentInfo componentInfo = getComponentInfo(resolveInfo); in isValidEuiccComponent()
329 private ComponentInfo getComponentInfo(ResolveInfo resolveInfo) { in getComponentInfo() method in ApplicationFeatureProviderImpl
/aosp12/packages/services/Telephony/src/com/android/phone/vvm/
H A DRemoteVvmTaskManager.java172 "Component " + TelephonyUtils.getComponentInfo(info) in getRemotePackage()
186 ComponentInfo componentInfo = TelephonyUtils.getComponentInfo(info); in getRemotePackage()
206 ComponentInfo componentInfo = TelephonyUtils.getComponentInfo(info.get(0)); in getBroadcastPackage()
/aosp12/frameworks/base/core/java/android/hardware/biometrics/
H A DSensorProperties.java170 public List<ComponentInfo> getComponentInfo() { in getComponentInfo() method in SensorProperties
/aosp12/packages/apps/Settings/src/com/android/settings/search/
H A DSearchFeatureProvider.java111 .getComponentInfo().getComponentName(); in initSearchToolbar()
/aosp12/frameworks/base/telephony/common/com/android/internal/telephony/util/
H A DTelephonyUtils.java86 public static ComponentInfo getComponentInfo(@NonNull ResolveInfo resolveInfo) { in getComponentInfo() method in TelephonyUtils
/aosp12/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/admin/
H A DDevicePolicyFragment.java390 admin = resolveInfo.getComponentInfo().getComponentName(); in DeviceAdminApp()
393 name = resolveInfo.getComponentInfo().name; in DeviceAdminApp()
/aosp12/packages/apps/Settings/src/com/android/settings/accounts/
H A DAvatarViewMixin.java111 intent.setComponent(matchedIntents.get(0).getComponentInfo().getComponentName()); in AvatarViewMixin()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/verify/domain/
H A DDomainVerificationService.java1609 final String packageName = info.getComponentInfo().packageName;
1627 final String packageName = inputMap.keyAt(index).getComponentInfo().packageName;
1643 String packageName = info.getComponentInfo().packageName;
1659 if (!Objects.equals(targetPackageName, info.getComponentInfo().packageName)) {
1671 String targetPackageName = info.getComponentInfo().packageName;
1684 if (!Objects.equals(targetPackageName, searchInfo.getComponentInfo().packageName)) {
1711 target.getComponentInfo().getComponentName())) {
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbResolverActivity.java80 if (ri.getComponentInfo().name.equals(FORWARD_INTENT_TO_MANAGED_PROFILE)) { in onCreate()
/aosp12/packages/apps/Settings/src/com/android/settings/security/trustagent/
H A DTrustAgentsPreferenceController.java151 resolveInfo.getComponentInfo().applicationInfo); in findAvailableTrustAgents()
/aosp12/packages/services/Car/car-lib/src/android/car/cluster/renderer/
H A DInstrumentClusterRenderingService.java400 || resolveList.get(0).getComponentInfo() == null) { in getComponentFromPackage()
406 return resolveList.get(0).getComponentInfo().getComponentName(); in getComponentFromPackage()
/aosp12/frameworks/base/services/core/java/com/android/server/incident/
H A DPendingReports.java443 return matches.get(0).getComponentInfo().getComponentName(); in getApproverComponent()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierServiceBindHelper.java244 ComponentInfo componentInfo = TelephonyUtils.getComponentInfo(carrierResolveInfo); in rebind()
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
H A DBluetoothRequestPermissionActivity.java214 return matches.get(0).getComponentInfo().packageName; in getSetupWizardPackageName()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
H A DEuiccConnector.java1109 bestComponent = TelephonyUtils.getComponentInfo(resolveInfo); in findBestComponent()
1119 ComponentInfo componentInfo = TelephonyUtils.getComponentInfo(resolveInfo); in isValidEuiccComponent()
/aosp12/frameworks/base/core/java/android/permission/
H A DPermissionControllerManager.java220 .setComponent(serviceInfo.getComponentInfo().getComponentName()), in PermissionControllerManager()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DCrossProfileAppsServiceImpl.java570 intent.setComponent(receiver.getComponentInfo().getComponentName());
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DActivityClientController.java1281 if (ri.getComponentInfo().getComponentName().equals(activity)) { in isLauncherActivity()

12