/aosp12/frameworks/base/tools/aapt2/optimize/ |
H A D | MultiApkGenerator.cpp | 139 wrapped_context.SetSource(artifact.name); in FromBaseApk() 144 filtered_artifacts.insert(artifact.name); in FromBaseApk() 151 kept_artifacts.insert(artifact.name); in FromBaseApk() 173 file::AppendPath(&out, artifact.name); in FromBaseApk() 226 wrapped_context.SetSource(artifact.name); in FilterTable() 228 if (!artifact.abis.empty()) { in FilterTable() 232 if (!artifact.screen_densities.empty()) { in FilterTable() 238 if (!artifact.locales.empty()) { in FilterTable() 245 if (artifact.android_sdk) { in FilterTable() 315 if (artifact.android_sdk) { in UpdateManifest() [all …]
|
H A D | MultiApkGenerator_test.cpp | 64 const configuration::OutputArtifact& artifact, in FilterTable() argument 67 return MultiApkGenerator::FilterTable(context, artifact, old_table, filter_chain); in FilterTable() 113 OutputArtifact artifact = test::ArtifactBuilder().AddDensity(xhdpi_).SetAndroidSdk(23).Build(); in TEST_F() local 117 generator.FilterTable(ctx.get(), artifact, *apk.GetResourceTable(), &chain); in TEST_F() 140 OutputArtifact artifact = test::ArtifactBuilder().AddDensity(xhdpi_).SetAndroidSdk(4).Build(); in TEST_F() local 144 generator.FilterTable(ctx.get(), artifact, *apk.GetResourceTable(), &chain); in TEST_F() 165 OutputArtifact artifact = test::ArtifactBuilder().AddDensity(xhdpi_).Build(); in TEST_F() local 169 generator.FilterTable(ctx.get(), artifact, *apk.GetResourceTable(), &chain); in TEST_F()
|
H A D | MultiApkGenerator.h | 56 const configuration::OutputArtifact& artifact, 65 bool UpdateManifest(const configuration::OutputArtifact& artifact,
|
/aosp12/frameworks/base/tools/aapt2/configuration/ |
H A D | ConfigurationParser.cpp | 214 if (!artifact.name && !config.artifact_format) { in ToOutputArtifact() 221 (artifact.name) ? artifact.Name(apk_name, diag) in ToOutputArtifact() 268 if (artifact.android_sdk) { in ToOutputArtifact() 495 ConfiguredArtifact artifact{}; in ArtifactTagHandler() local 498 artifact.name = attr.value; in ArtifactTagHandler() 500 artifact.abi_group = {attr.value}; in ArtifactTagHandler() 502 artifact.screen_density_group = {attr.value}; in ArtifactTagHandler() 504 artifact.locale_group = {attr.value}; in ArtifactTagHandler() 506 artifact.android_sdk = {attr.value}; in ArtifactTagHandler() 508 artifact.gl_texture_group = {attr.value}; in ArtifactTagHandler() [all …]
|
H A D | ConfigurationParser_test.cpp | 53 void PrintTo(const ConfiguredArtifact& artifact, std::ostream* os) { in PrintTo() argument 55 << "\n name: " << artifact.name << "\n sdk: " << artifact.android_sdk in PrintTo() 56 << "\n abi: " << artifact.abi_group << "\n density: " << artifact.screen_density_group in PrintTo() 57 << "\n locale: " << artifact.locale_group in PrintTo() 58 << "\n features: " << artifact.device_feature_group in PrintTo() 59 << "\n textures: " << artifact.gl_texture_group << "\n}\n"; in PrintTo()
|
H A D | ConfigurationParser.internal.h | 202 inline int GetMinSdk(const ConfiguredArtifact& artifact) { in GetMinSdk() 203 if (!artifact.android_sdk) { in GetMinSdk() 206 const auto& entry = android_sdks.find(artifact.android_sdk.value()); in GetMinSdk()
|
/aosp12/art/test/odsign/src/com/android/tests/odsign/ |
H A D | ArtifactsSignedTest.java | 81 for (String artifact : REQUIRED_ARTIFACT_NAMES) { in testArtArtifactsHaveFsverity() 82 assertTrue("Missing artifact " + artifact, mFoundArtifactNames.contains(artifact)); in testArtArtifactsHaveFsverity() 97 for (String artifact : REQUIRED_ARTIFACT_NAMES) { in testGeneratesRequiredArtArtifacts() 98 assertTrue("Missing artifact " + artifact, mFoundArtifactNames.contains(artifact)); in testGeneratesRequiredArtArtifacts()
|
/aosp12/build/soong/bazel/ |
H A D | aquery.go | 28 type artifact struct { struct 67 Artifacts []artifact 102 for _, artifact := range aqueryResult.Artifacts { 103 artifactPath, err := expandPathFragment(artifact.PathFragmentId, pathFragments) 107 artifactIdToPath[artifact.Id] = artifactPath
|
/aosp12/build/make/core/ |
H A D | artifact_path_requirements.mk | 35 $(makefile) produces files outside its artifact path requirement. \ 39 …$(unused_allowed),$(makefile) includes redundant allowed entries in its artifact path requirement.… 51 $(INTERNAL_PRODUCT) produces files inside $(makefile)s artifact path requirement. \ 55 …list-and-error,$(unused_allowed),$(INTERNAL_PRODUCT) includes redundant artifact path requirement …
|
/aosp12/build/soong/cmd/diff_target_files/ |
H A D | compare.go | 24 func compareTargetFiles(priZip, refZip ZipArtifact, artifact string, allowLists []allowList, filter… 35 priZipFiles, err = filterTargetZipFiles(priZipFiles, artifact, filters) 40 refZipFiles, err = filterTargetZipFiles(refZipFiles, artifact, filters)
|
H A D | target_files.go | 46 func filterTargetZipFiles(files []*ZipArtifactFile, artifact string, patterns []string) ([]*ZipArti… 54 if artifact == targetFilesPattern {
|
/aosp12/system/apex/tests/testdata/sharedlibs/build/ |
H A D | build_artifacts.sh | 157 for artifact in "${generated_artifacts[@]}"; do 158 artifacts_filenames+=($(basename ${artifact})) 163 for artifact in "${artifacts_filenames[@]}"; do 164 outfile=$(basename "${artifact}")
|
/aosp12/frameworks/base/tools/aapt2/cmd/ |
H A D | Optimize.cpp | 397 for (const OutputArtifact& artifact : options_.apk_artifacts.value()) { in Action() local 398 std::cout << artifact.name << std::endl; in Action() 405 for (const StringPiece& artifact : util::Tokenize(artifact_str, ',')) { in Action() local 406 options_.kept_artifacts.insert(artifact.to_string()); in Action()
|
/aosp12/art/test/odsign/test-src/com/android/tests/odsign/ |
H A D | OnDeviceSigningHostTest.java | 190 final String artifact = bootExtensionName + extension; in verifyZygoteLoadedArtifacts() local 191 final boolean found = mappedArtifacts.stream().anyMatch(a -> a.endsWith(artifact)); in verifyZygoteLoadedArtifacts() 192 assertTrue(zygoteName + " " + artifact + " not found: '" + allArtifacts + "'", found); in verifyZygoteLoadedArtifacts()
|
/aosp12/system/security/ondevice-signing/proto/ |
H A D | odsign_info.proto | 22 // Map of artifact files to their hashes
|
/aosp12/packages/modules/Connectivity/tests/cts/hostside/ |
H A D | Android.bp | 28 // Tag this module as a cts test artifact
|
/aosp12/packages/modules/Connectivity/tests/cts/hostside/app2/ |
H A D | Android.bp | 27 // Tag this module as a cts test artifact
|
/aosp12/packages/modules/Connectivity/tests/cts/net/appForApi23/ |
H A D | Android.bp | 30 // Tag this module as a cts test artifact
|
/aosp12/packages/modules/StatsD/tests/ |
H A D | Android.bp | 27 // tag this module as a cts test artifact
|
/aosp12/packages/modules/Connectivity/tests/cts/net/native/ |
H A D | Android.bp | 51 // Tag this module as a cts test artifact
|
/aosp12/system/sepolicy/prebuilts/api/31.0/public/ |
H A D | asan_extract.te | 3 # This command set moves the artifact corresponding to the current slot
|
/aosp12/system/sepolicy/prebuilts/api/32.0/public/ |
H A D | asan_extract.te | 3 # This command set moves the artifact corresponding to the current slot
|
/aosp12/system/sepolicy/public/ |
H A D | asan_extract.te | 3 # This command set moves the artifact corresponding to the current slot
|
/aosp12/packages/modules/Connectivity/tests/cts/net/api23Test/ |
H A D | Android.bp | 49 // Tag this module as a cts test artifact
|
/aosp12/system/sepolicy/prebuilts/api/27.0/public/ |
H A D | otapreopt_slot.te | 3 # This command set moves the artifact corresponding to the current slot
|