Home
last modified time | relevance | path

Searched refs:vndkVersion (Results 1 – 9 of 9) sorted by relevance

/build/soong/apex/
Dvndk.go51 func (a *apexBundle) vndkVersion(config android.DeviceConfig) string { func
52 vndkVersion := proptools.StringDefault(a.vndkProperties.Vndk_version, "current")
53 if vndkVersion == "current" {
54 vndkVersion = config.PlatformVndkVersion()
56 return vndkVersion
81 vndkVersion := ab.vndkVersion(mctx.DeviceConfig())
83 ab.properties.Apex_name = proptools.StringPtr(vndkApexNamePrefix + vndkVersion)
89 if other, ok := vndkApexList[vndkVersion]; ok {
90 mctx.PropertyErrorf("vndk_version", "%v is already defined in %q", vndkVersion, other)
92 vndkApexList[vndkVersion] = mctx.ModuleName()
[all …]
Dapex.go1529 return cc.VendorVariationPrefix + a.vndkVersion(deviceConfig)
1533 var vndkVersion string
1537 vndkVersion = deviceConfig.PlatformVndkVersion()
1540 vndkVersion = deviceConfig.VndkVersion()
1543 vndkVersion = deviceConfig.ProductVndkVersion()
1546 if vndkVersion == "current" {
1547 vndkVersion = deviceConfig.PlatformVndkVersion()
1549 if vndkVersion != "" {
1550 return prefix + vndkVersion
/build/soong/cc/
Dgenrule.go82 vndkVersion := ctx.DeviceConfig().VndkVersion()
87 if vndkVersion == "current" || !isVendorProprietaryPath(ctx.ModuleDir()) {
90 variants = append(variants, VendorVariationPrefix+vndkVersion)
100 if vndkVersion := ctx.DeviceConfig().ProductVndkVersion(); vndkVersion != "current" {
101 variants = append(variants, ProductVariationPrefix+vndkVersion)
Dvndk.go39 func VndkLibrariesTxtModules(vndkVersion string) []string {
40 if vndkVersion == "current" {
51 insertVndkVersion(llndkLibrariesTxt, vndkVersion),
52 insertVndkVersion(vndkCoreLibrariesTxt, vndkVersion),
53 insertVndkVersion(vndkSpLibrariesTxt, vndkVersion),
54 insertVndkVersion(vndkPrivateLibrariesTxt, vndkVersion),
443 func insertVndkVersion(filename string, vndkVersion string) string {
445 return filename[:index] + "." + vndkVersion + filename[index:]
Dvndk_prebuilt.go159 vndkVersion := ctx.DeviceConfig().VndkVersion()
160 if vndkVersion == p.version() {
Dvendor_snapshot.go867 vndkVersion := ctx.DeviceConfig().VndkVersion()
869 if vndkVersion == "current" || vndkVersion == "" {
874 if !ok || !module.Enabled() || module.VndkVersion() != vndkVersion {
922 vndkVersion := ctx.DeviceConfig().VndkVersion()
924 if vndkVersion == "current" || vndkVersion == "" {
Dlibrary.go1055 func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path { argument
1060 …refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isNdk, isLlndkOrVn…
1061 …refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isNdk, isLlndkOrVn…
1080 var vndkVersion string
1084 vndkVersion = ctx.Module().(*Module).VndkVersion()
1087 vndkVersion = ctx.DeviceConfig().PlatformVndkVersion()
1106 refAbiDumpFile := getRefAbiDumpFile(ctx, vndkVersion, fileName)
1249 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
1250 if vndkVersion != "current" && vndkVersion != "" {
1251 library.baseInstaller.subDir += "-" + vndkVersion
Dcc.go1416 var vndkVersion string
1419 vndkVersion = ctx.DeviceConfig().ProductVndkVersion()
1422 vndkVersion = ctx.DeviceConfig().VndkVersion()
1425 if vndkVersion == "current" {
1426 vndkVersion = ctx.DeviceConfig().PlatformVndkVersion()
1428 if c.Properties.VndkVersion != vndkVersion {
3252 vndkVersion := ctx.DeviceConfig().VndkVersion()
3253 if vndkVersion != "current" && vndkVersion != "" && vndkVersion != m.Properties.VndkVersion {
Dsanitize.go357 vndkVersion := ctx.DeviceConfig().VndkVersion()
358 if ctx.useVndk() && vndkVersion != "current" && vndkVersion != "" {