Home
last modified time | relevance | path

Searched refs:attributionTags (Results 1 – 14 of 14) sorted by relevance

/aosp14/frameworks/base/core/java/android/content/pm/
H A DComponentInfo.java77 public String[] attributionTags; field in ComponentInfo
115 attributionTags = orig.attributionTags; in ComponentInfo()
201 if (attributionTags != null && attributionTags.length > 0) { in dumpFront()
203 tags.append(attributionTags[0]); in dumpFront()
204 for (int i = 1; i < attributionTags.length; i++) { in dumpFront()
206 tags.append(attributionTags[i]); in dumpFront()
238 dest.writeString8Array(attributionTags); in writeToParcel()
250 attributionTags = source.createString8Array(); in ComponentInfo()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/pkg/component/
H A DParsedMainComponentImpl.java52 private String[] attributionTags; field in ParsedMainComponentImpl
65 this.attributionTags = other.getAttributionTags(); in ParsedMainComponentImpl()
83 return attributionTags == null ? EmptyArray.STRING : attributionTags; in getAttributionTags()
100 dest.writeString8Array(this.attributionTags); in writeToParcel()
111 this.attributionTags = in.createString8Array(); in ParsedMainComponentImpl()
150 @Nullable String[] attributionTags) { in ParsedMainComponentImpl() argument
157 this.attributionTags = attributionTags; in ParsedMainComponentImpl()
224 attributionTags = value; in setAttributionTags()
H A DParsedAttributionUtils.java122 ArraySet<String> attributionTags = new ArraySet<>(attributions.size()); in isCombinationValid() local
131 boolean wasAdded = attributionTags.add(attributions.get(attributionNum).getTag()); in isCombinationValid()
146 if (attributionTags.contains(inheritFrom)) { in isCombinationValid()
H A DParsedMainComponentUtils.java104 final String attributionTags = array.getNonConfigurationString(attributionTagsAttr, 0); in parseMainComponent() local
105 if (attributionTags != null) { in parseMainComponent()
106 component.setAttributionTags(attributionTags.split("\\|")); in parseMainComponent()
/aosp14/frameworks/base/core/java/android/os/
H A DPackageTagsList.java297 @NonNull Collection<String> attributionTags) { in add() argument
298 if (attributionTags.isEmpty()) { in add()
305 tags = new ArraySet<>(attributionTags); in add()
309 tags.addAll(attributionTags); in add()
379 @NonNull Collection<String> attributionTags) { in remove() argument
380 if (attributionTags.isEmpty()) { in remove()
386 if (tags != null && tags.removeAll(attributionTags) && tags.isEmpty()) { in remove()
/aosp14/frameworks/base/services/core/java/com/android/server/location/provider/proxy/
H A DProxyLocationProvider.java252 String[] attributionTags = new String[0]; in onInitialize() local
256 attributionTags = tagsStr.split(LOCATION_TAGS_SEPARATOR); in onInitialize()
258 + Arrays.toString(attributionTags)); in onInitialize()
261 ArraySet<String> extraAttributionTags = new ArraySet<>(attributionTags); in onInitialize()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastSkipPolicy.java600 if (ArrayUtils.isEmpty(info.activityInfo.attributionTags)) { in noteOpForManifestReceiver()
604 for (String tag : info.activityInfo.attributionTags) { in noteOpForManifestReceiver()
/aosp14/frameworks/base/core/java/android/permission/
H A DPermissionUsageHelper.java484 List<String> attributionTags = in getOpUsages() local
490 String attributionTag = attributionTags.get(attrOpEntryNum); in getOpUsages()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/parsing/
H A DPackageInfoUtils.java533 ai.attributionTags = a.getAttributionTags(); in generateActivityInfo()
831 info.attributionTags = component.getAttributionTags(); in assignFieldsComponentInfoParsedMainComponent()
/aosp14/frameworks/base/core/java/android/app/
H A DActivityThread.java4458 if (data.info.attributionTags != null && data.info.attributionTags.length > 0) { in handleReceiver()
4459 final String attributionTag = data.info.attributionTags[0]; in handleReceiver()
4673 if (data.info.attributionTags != null && data.info.attributionTags.length > 0) { in handleCreateService()
4674 final String attributionTag = data.info.attributionTags[0]; in handleCreateService()
7812 if (info.attributionTags != null && info.attributionTags.length > 0) { in installProvider()
7813 final String attributionTag = info.attributionTags[0]; in installProvider()
H A DContextImpl.java3353 if (activityInfo.attributionTags != null && activityInfo.attributionTags.length > 0) { in createActivityContext()
3354 attributionTag = activityInfo.attributionTags[0]; in createActivityContext()
/aosp14/frameworks/base/services/core/java/com/android/server/appop/
H A DAppOpsService.java978 ArraySet<String> attributionTags = new ArraySet<>();
979 attributionTags.add(null);
985 attributionTags.add(attribution.getTag());
1022 if (attributionTags.contains(attributionTag)) {
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/aosp14/frameworks/base/core/api/
H A Dcurrent.txt478 field public static final int attributionTags = 16844354; // 0x1010642
11946 field public String[] attributionTags;