Home
last modified time | relevance | path

Searched refs:artifact (Results 1 – 25 of 53) sorted by relevance

123

/aosp12/frameworks/base/tools/aapt2/optimize/
H A DMultiApkGenerator.cpp139 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 DMultiApkGenerator_test.cpp64 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 DMultiApkGenerator.h56 const configuration::OutputArtifact& artifact,
65 bool UpdateManifest(const configuration::OutputArtifact& artifact,
/aosp12/frameworks/base/tools/aapt2/configuration/
H A DConfigurationParser.cpp214 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 DConfigurationParser_test.cpp53 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 DConfigurationParser.internal.h202 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 DArtifactsSignedTest.java81 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 Daquery.go28 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 Dartifact_path_requirements.mk35 $(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 Dcompare.go24 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 Dtarget_files.go46 func filterTargetZipFiles(files []*ZipArtifactFile, artifact string, patterns []string) ([]*ZipArti…
54 if artifact == targetFilesPattern {
/aosp12/system/apex/tests/testdata/sharedlibs/build/
H A Dbuild_artifacts.sh157 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 DOptimize.cpp397 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 DOnDeviceSigningHostTest.java190 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 Dodsign_info.proto22 // Map of artifact files to their hashes
/aosp12/packages/modules/Connectivity/tests/cts/hostside/
H A DAndroid.bp28 // Tag this module as a cts test artifact
/aosp12/packages/modules/Connectivity/tests/cts/hostside/app2/
H A DAndroid.bp27 // Tag this module as a cts test artifact
/aosp12/packages/modules/Connectivity/tests/cts/net/appForApi23/
H A DAndroid.bp30 // Tag this module as a cts test artifact
/aosp12/packages/modules/StatsD/tests/
H A DAndroid.bp27 // tag this module as a cts test artifact
/aosp12/packages/modules/Connectivity/tests/cts/net/native/
H A DAndroid.bp51 // Tag this module as a cts test artifact
/aosp12/system/sepolicy/prebuilts/api/31.0/public/
H A Dasan_extract.te3 # This command set moves the artifact corresponding to the current slot
/aosp12/system/sepolicy/prebuilts/api/32.0/public/
H A Dasan_extract.te3 # This command set moves the artifact corresponding to the current slot
/aosp12/system/sepolicy/public/
H A Dasan_extract.te3 # This command set moves the artifact corresponding to the current slot
/aosp12/packages/modules/Connectivity/tests/cts/net/api23Test/
H A DAndroid.bp49 // Tag this module as a cts test artifact
/aosp12/system/sepolicy/prebuilts/api/27.0/public/
H A Dotapreopt_slot.te3 # This command set moves the artifact corresponding to the current slot

123