Home
last modified time | relevance | path

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

/build/soong/apex/
Dvndk.go49 func (a *apexBundle) vndkVersion(config android.DeviceConfig) string { func
50 vndkVersion := proptools.StringDefault(a.vndkProperties.Vndk_version, "current")
51 if vndkVersion == "current" {
52 vndkVersion = config.PlatformVndkVersion()
54 return vndkVersion
68 vndkVersion := ab.vndkVersion(mctx.DeviceConfig())
70 ab.properties.Apex_name = proptools.StringPtr(vndkApexNamePrefix + vndkVersion)
76 vndkVersion := m.VndkVersion()
78 if vndkVersion == "" {
79 vndkVersion = mctx.DeviceConfig().PlatformVndkVersion()
[all …]
Dapex.go635 return cc.VendorVariationPrefix + a.vndkVersion(deviceConfig)
639 var vndkVersion string
643 vndkVersion = deviceConfig.VndkVersion()
646 vndkVersion = deviceConfig.ProductVndkVersion()
649 if vndkVersion == "current" {
650 vndkVersion = deviceConfig.PlatformVndkVersion()
652 if vndkVersion != "" {
653 return prefix + vndkVersion
/build/soong/cc/
Dgenrule.go101 vndkVersion := ctx.DeviceConfig().VndkVersion()
106 if vndkVersion == "current" || !isVendorProprietaryModule(ctx) {
109 variants = append(variants, VendorVariationPrefix+vndkVersion)
119 if vndkVersion := ctx.DeviceConfig().ProductVndkVersion(); vndkVersion != "current" {
120 variants = append(variants, ProductVariationPrefix+vndkVersion)
Dstl.go145 vndkVersion := ctx.Module().(*Module).VndkVersion()
148 if vndkVersion == "30" {
Dvndk_prebuilt.go165 vndkVersion := ctx.DeviceConfig().VndkVersion()
166 if vndkVersion == p.version() {
Dimage.go697 vndkVersion := ctx.DeviceConfig().VndkVersion()
698 if vndkVersion != "current" && vndkVersion != "" && vndkVersion != m.Properties.VndkVersion {
Dsnapshot_prebuilt.go167 vndkVersion := cfg.VndkVersion()
168 return vndkVersion != "current" && vndkVersion != ""
Dlibrary.go1368 func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path { argument
1373 …refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isNdk, isLlndkOrVn…
1374 …refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isNdk, isLlndkOrVn…
1393 var vndkVersion string
1397 vndkVersion = ctx.Module().(*Module).VndkVersion()
1400 vndkVersion = ctx.DeviceConfig().PlatformVndkVersion()
1419 refAbiDumpFile := getRefAbiDumpFile(ctx, vndkVersion, fileName)
/build/soong/rust/
Dimage.go195 vndkVersion := ctx.DeviceConfig().VndkVersion()
196 if vndkVersion != "current" && vndkVersion != "" && vndkVersion != m.Properties.VndkVersion {