/build/soong/scripts/ |
D | Android.bp | 7 version: { 27 version: { 46 version: { 62 version: { 82 version: { 102 version: { 118 version: { 138 version: { 158 version: { 178 version: {
|
/build/soong/cc/ndkstubgen/ |
D | test_ndkstubgen.py | 38 version = symbolfile.Version('VERSION_PRIVATE', None, [], [ 41 generator.write_version(version) 45 version = symbolfile.Version('VERSION', None, ['x86'], [ 48 generator.write_version(version) 52 version = symbolfile.Version('VERSION', None, ['introduced=14'], [ 55 generator.write_version(version) 67 version = symbolfile.Version('VERSION_1', None, [], [ 70 generator.write_version(version) 74 version = symbolfile.Version('VERSION_1', None, [], [ 77 generator.write_version(version) [all …]
|
D | __init__.py | 39 for version in versions: 40 self.write_version(version) 42 def write_version(self, version): argument 44 if symbolfile.should_omit_version(version, self.arch, self.api, 49 version.tags, self.api) 52 for symbol in version.symbols: 63 self.version_script.write(version.name + ' {\n') 83 base = '' if version.base is None else ' ' + version.base
|
/build/soong/cc/symbolfile/ |
D | __init__.py | 117 def version_is_private(version): argument 119 return version.endswith('_PRIVATE') or version.endswith('_PLATFORM') 122 def should_omit_version(version, arch, api, llndk, apex): argument 129 if version_is_private(version.name): 131 if 'platform-only' in version.tags: 134 no_llndk_no_apex = ('llndk' not in version.tags 135 and 'apex' not in version.tags) 137 ('llndk' in version.tags and llndk) or \ 138 ('apex' in version.tags and apex) 141 if not symbol_in_arch(version.tags, arch): [all …]
|
D | test_symbolfile.py | 333 version = parser.parse_version() 334 self.assertEqual('VERSION_1', version.name) 335 self.assertIsNone(version.base) 336 self.assertEqual(['foo', 'bar'], version.tags) 342 self.assertEqual(expected_symbols, version.symbols) 345 version = parser.parse_version() 346 self.assertEqual('VERSION_2', version.name) 347 self.assertEqual('VERSION_1', version.base) 348 self.assertEqual([], version.tags) 407 version = parser.parse_version() [all …]
|
/build/soong/docs/ |
D | map_files.md | 4 map.txt files. These files are [linker version scripts] with comments that are 10 [linker version scripts]: https://www.gnu.org/software/gnulib/manual/html_node/LD-Version-Scripts.h… 14 A linker version script defines at least one alphanumeric "version" definition, 32 Comments on the same line as either a version definition or a symbol name have 38 `MY_API_R` version and `api_baz` is exposed with the `MY_API_S` version. No 42 When generating NDK API stubs from this version script, the stub library for R 46 Note that, with few exceptions (see "Special version names" below), the name of 47 the version has no inherent meaning. 49 These map files can (and should) also be used as version scripts for building 57 ## Special version names [all …]
|
/build/soong/java/ |
D | sdk.go | 147 version sdkVersion member 152 return fmt.Sprintf("%s_%s", s.kind, s.version) 205 version := sdkVersion(LatestSdkVersionInt(ctx)) 206 return sdkSpec{kind, version, s.raw} 213 if s.version.isCurrent() { 216 } else if s.version.isNumbered() { 234 return s.version, fmt.Errorf("invalid sdk version %q", s.raw) 239 if s.version.isNumbered() { 240 return s.version, nil 311 var version sdkVersion [all …]
|
/build/soong/cc/ndk_api_coverage_parser/ |
D | __init__.py | 72 for version in versions: 73 if VARIABLE_TAG in version.tags: 75 version_attributes = parse_tags(version.tags) 76 _, _, postfix = version.name.partition('_') 81 for symbol in version.symbols:
|
/build/make/core/ |
D | local_systemsdk.mk | 45 ifneq (,$(call has-system-sdk-version,$(LOCAL_SDK_VERSION))) 57 _system_sdk_version := $(call get-numeric-sdk-version,$(LOCAL_SDK_VERSION)) 60 …System SDK version '$(_system_sdk_version)' is not supported. Supported versions are: $(_supported…
|
D | android_manifest.mk | 44 my_target_sdk_version := $(call module-target-sdk-version) 45 my_min_sdk_version := $(call module-min-sdk-version) 79 …call math_gt_or_eq,$(patsubst $(PLATFORM_VERSION_CODENAME),100,$(call module-min-sdk-version)),23)) 86 …_USE_EMBEDDED_NATIVE_LIBS is set but minSdkVersion $(call module-min-sdk-version) does not support… 104 --raise-min-sdk-version \
|
D | host_dalvik_java_library.mk | 187 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEFAULT_APP_TARGET_SDK := $(call module-target-sdk-version) 188 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_SDK_VERSION := $(call module-sdk-version) 189 …_TARGETS): PRIVATE_MIN_SDK_VERSION := $(call codename-or-sdk-to-sdk,$(call module-min-sdk-version))
|
/build/make/tools/ |
D | Android.bp | 18 version: { 31 version: { 48 version: { 63 version: {
|
D | check_elf_file.py | 270 version = '' 276 version = name_with_version[pos + 1:] 277 return (name, version) 287 name, version = cls._parse_symbol_name(symbol['Name']) 291 imported[name].add(version) 294 exported[name].add(version) 437 def _find_symbol(lib, name, version): argument 444 if version == '': # Symbol version is not requested 446 return version in lib_sym_vers 450 def _find_symbol_from_libs(cls, libs, name, version): argument [all …]
|
/build/soong/cc/ |
D | ndk_library.go | 137 version, err := strconv.Atoi(apiLevel) 141 version = intMax(version, minVersion) 143 return strconv.Itoa(intMax(version, firstArchVersion)), nil 177 version, err := android.ApiStrToNum(ctx, stub.properties.ApiLevel) 182 return version >= unversionedUntil, nil 202 for version := firstGenVersion; version <= platformVersion; version++ { 203 versionStrs = append(versionStrs, strconv.Itoa(version))
|
D | binary_sdk_member.go | 44 name, version := StubsLibNameAndVersion(lib) 45 if version == "" { 46 version = LatestStubsVersionFor(mctx.Config(), name) 49 {Mutator: "version", Variation: version},
|
D | vndk_prebuilt.go | 84 suffix := p.version() 94 func (p *vndkPrebuiltLibraryDecorator) version() string { func 160 if vndkVersion == p.version() { 203 p.baseInstaller.subDir = "vndk-sp-" + p.version() 205 p.baseInstaller.subDir = "vndk-" + p.version()
|
D | ndk_prebuilt.go | 37 func getNdkLibDir(ctx android.ModuleContext, toolchain config.Toolchain, version string) android.So… 45 version, toolchain.Name(), suffix)) 49 ext string, version string) android.Path { 54 dir := getNdkLibDir(ctx, toolchain, version)
|
D | library_sdk_member.go | 78 name, version := StubsLibNameAndVersion(lib) 79 if version == "" { 80 version = LatestStubsVersionFor(mctx.Config(), name) 85 {Mutator: "version", Variation: version}, 92 {Mutator: "version", Variation: version},
|
D | binary.go | 145 version := ctx.sdkVersion() 146 if version == "current" { 147 version = getCurrentNdkPrebuiltVersion(ctx) 151 deps.CrtBegin = "ndk_crtbegin_static." + version 154 deps.CrtBegin = "ndk_crtbegin_static." + version 156 deps.CrtBegin = "ndk_crtbegin_dynamic." + version 158 deps.CrtEnd = "ndk_crtend_android." + version
|
/build/make/target/product/gsi/ |
D | init.vndk-27.rc | 2 # Set ro.vndk.version to 27 so that O-MR1-VENDOR can run latest GSI. 3 setprop ro.vndk.version 27
|
D | init.legacy-gsi.rc | 1 # If ro.vndk.version is not defined, import init.vndk-27.rc. 2 import /system/etc/init/gsi/init.vndk-${ro.vndk.version:-27}.rc
|
/build/soong/cmd/diff_target_files/ |
D | props.whitelist | 2 // Ignore date, version and hostname properties in build.prop and prop.default files. 11 "ro\\..*build\\.version\\.incremental=.*",
|
/build/soong/python/tests/ |
D | Android.bp | 23 version: { 43 version: {
|
/build/soong/cmd/pom2mk/ |
D | pom2mk.go | 369 -sdk-version <version> 370 Sets LOCAL_SDK_VERSION := <version> for all modules. 371 -use-version <version> 373 -use-version can be used to only write makefiles for a specific version of those artifacts.
|
/build/make/tools/acp/ |
D | Android.bp | 3 // Custom version of cp.
|