Lines Matching refs:commonProperties

357 type commonProperties struct {  struct
656 &base.commonProperties)
665 setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility)
672 base.commonProperties.HostOrDeviceSupported = hod
673 base.commonProperties.Default_multilib = string(defaultMultilib)
674 base.commonProperties.ArchSpecific = true
675 base.commonProperties.UseTargetVariants = true
687 m.base().commonProperties.UseTargetVariants = false
694 m.base().commonProperties.UseTargetVariants = false
695 m.base().commonProperties.CreateCommonOSVariant = true
746 commonProperties commonProperties member
824 sb.WriteString(m.commonProperties.DebugName)
826 for i := range m.commonProperties.DebugMutators {
830 sb.WriteString(m.commonProperties.DebugMutators[i])
832 sb.WriteString(m.commonProperties.DebugVariations[i])
856 if len(m.commonProperties.Dist.Targets) > 0 {
859 distsCopy := append([]Dist(nil), m.commonProperties.Dists...)
860 return append(distsCopy, m.commonProperties.Dist)
862 return m.commonProperties.Dists
891 return m.commonProperties.CompileTarget
895 return m.commonProperties.CompilePrimary
899 return m.commonProperties.CompileMultiTargets
919 return m.commonProperties.ArchSpecific
924 return m.commonProperties.CommonOSVariant
928 switch m.commonProperties.HostOrDeviceSupported {
938 (m.commonProperties.HostOrDeviceSupported == HostAndDeviceDefault &&
953 return m.commonProperties.HostOrDeviceSupported == DeviceSupported ||
954 m.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported &&
960 return m.commonProperties.HostOrDeviceSupported == HostSupported ||
961 m.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported &&
971 return Bool(m.commonProperties.Device_specific)
975 …return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonPro…
979 return Bool(m.commonProperties.Product_specific)
983 return Bool(m.commonProperties.System_ext_specific)
1028 if m.commonProperties.ForcedDisabled {
1031 if m.commonProperties.Enabled == nil {
1034 return *m.commonProperties.Enabled
1038 m.commonProperties.ForcedDisabled = true
1042 m.commonProperties.SkipInstall = true
1046 return m.commonProperties.SkipInstall == true
1050 return m.commonProperties.NamespaceExportedToMake
1087 return Bool(m.commonProperties.Ramdisk)
1091 return Bool(m.commonProperties.Recovery)
1107 return String(m.commonProperties.Owner)
1115 m.commonProperties.ImageVariation = variant
1121 Variation: m.base().commonProperties.ImageVariation,
1126 for i, v := range m.commonProperties.DebugMutators {
1128 return m.commonProperties.DebugVariations[i]
1136 return m.base().commonProperties.ImageVariation == RamdiskVariation
1140 return m.base().commonProperties.ImageVariation == RecoveryVariation
1144 return m.base().commonProperties.Required
1148 return m.base().commonProperties.Host_required
1152 return m.base().commonProperties.Target_required
1206 …var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(…
1207 var deviceSpecific = Bool(m.commonProperties.Device_specific)
1208 var productSpecific = Bool(m.commonProperties.Product_specific)
1209 var systemExtSpecific = Bool(m.commonProperties.System_ext_specific)
1214 if Bool(m.commonProperties.Vendor) {
1217 if Bool(m.commonProperties.Proprietary) {
1220 if Bool(m.commonProperties.Soc_specific) {
1239 if Bool(m.commonProperties.Vendor) {
1242 if Bool(m.commonProperties.Proprietary) {
1245 if Bool(m.commonProperties.Soc_specific) {
1276 os: m.commonProperties.CompileOS,
1277 target: m.commonProperties.CompileTarget,
1278 targetPrimary: m.commonProperties.CompilePrimary,
1279 multiTargets: m.commonProperties.CompileMultiTargets,
1330 if m.commonProperties.Dist.Dest != nil {
1331 _, err := validateSafePath(*m.commonProperties.Dist.Dest)
1336 if m.commonProperties.Dist.Dir != nil {
1337 _, err := validateSafePath(*m.commonProperties.Dist.Dir)
1342 if m.commonProperties.Dist.Suffix != nil {
1343 if strings.Contains(*m.commonProperties.Dist.Suffix, "/") {
1358 notice := proptools.StringDefault(m.commonProperties.Notice, "")
1384 m.initRcPaths = PathsForModuleSrc(ctx, m.commonProperties.Init_rc)
1385 m.vintfFragmentsPaths = PathsForModuleSrc(ctx, m.commonProperties.Vintf_fragments)
1663 missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
1671 missingDeps := &b.Module().base().commonProperties.MissingDeps
1947 m.commonProperties.Vendor = boolPtr(false)
1948 m.commonProperties.Proprietary = boolPtr(false)
1949 m.commonProperties.Soc_specific = boolPtr(false)
1950 m.commonProperties.Product_specific = boolPtr(false)
1951 m.commonProperties.System_ext_specific = boolPtr(false)
1955 m.commonProperties.Native_bridge_supported = boolPtr(true)
1959 m.commonProperties.Vendor = boolPtr(false)
1960 m.commonProperties.Proprietary = boolPtr(false)
1961 m.commonProperties.Soc_specific = boolPtr(false)
1962 m.commonProperties.Product_specific = boolPtr(false)
1963 m.commonProperties.System_ext_specific = boolPtr(true)
1968 return proptools.Bool(m.commonProperties.Native_bridge_supported)
2004 if m.module.base().commonProperties.SkipInstall {
2011 if !m.module.base().commonProperties.NamespaceExportedToMake {