Home
last modified time | relevance | path

Searched refs:componentString (Results 1 – 6 of 6) sorted by relevance

/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessibility/
H A DAccessibilityShortcutServiceFragment.java107 final String componentString = componentName.flattenToString(); in onAccessibilityServiceConfirmed() local
110 componentString); in onAccessibilityServiceConfirmed() local
121 boolean shouldEnable = componentString.equals(pref.getKey()); in onAccessibilityServiceConfirmed()
/aosp12/packages/apps/Dialer/java/com/android/dialer/telecom/
H A DTelecomUtil.java172 @Nullable String componentString, @Nullable String accountId) { in composePhoneAccountHandle()
173 return composePhoneAccountHandle(componentString, accountId, null); in composePhoneAccountHandle()
179 @Nullable String componentString, @Nullable String accountId, in composePhoneAccountHandle()
181 if (TextUtils.isEmpty(componentString) || TextUtils.isEmpty(accountId)) { in composePhoneAccountHandle()
184 final ComponentName componentName = ComponentName.unflattenFromString(componentString); in composePhoneAccountHandle()
/aosp12/packages/apps/Settings/src/com/android/settings/nfc/
H A DPaymentBackend.java157 String componentString = Settings.Secure.getString(mContext.getContentResolver(), in getDefaultPaymentApp() local
159 if (componentString != null) { in getDefaultPaymentApp()
160 return ComponentName.unflattenFromString(componentString); in getDefaultPaymentApp()
/aosp12/packages/services/Car/tests/MultiDisplaySecondaryHomeTestLauncher/src/com/android/car/multidisplay/launcher/
H A DPinnedAppListLiveData.java70 for (String componentString : pinnedAppsComponents) { in loadData()
72 mainIntent.setComponent(ComponentName.unflattenFromString(componentString)); in loadData()
/aosp12/frameworks/base/services/core/java/com/android/server/adb/
H A DAdbDebuggingManager.java1450 String componentString; in startConfirmationForNetwork() local
1452 componentString = Resources.getSystem().getString( in startConfirmationForNetwork()
1455 componentString = Resources.getSystem().getString( in startConfirmationForNetwork()
1458 ComponentName componentName = ComponentName.unflattenFromString(componentString); in startConfirmationForNetwork()
1465 + componentString + " as an Activity or a Service"); in startConfirmationForNetwork()
1474 String componentString; in startConfirmationForKey() local
1476 componentString = mConfirmComponent != null in startConfirmationForKey()
1482 componentString = Resources.getSystem().getString( in startConfirmationForKey()
1485 ComponentName componentName = ComponentName.unflattenFromString(componentString); in startConfirmationForKey()
1492 + componentString + " as an Activity or a Service"); in startConfirmationForKey()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java23841 final String componentString = mContext.getString(stringResId);
23842 if (TextUtils.isEmpty(componentString)) {
23845 final ComponentName component = ComponentName.unflattenFromString(componentString);