/build/soong/android/ |
D | arch_list.go | 19 var archVariants = map[ArchType][]string{ 90 var archFeatures = map[ArchType][]string{ 122 var archFeatureMap = map[ArchType]map[string][]string{ 393 var defaultArchFeatureMap = map[OsType]map[ArchType][]string{} 398 func RegisterDefaultArchVariantFeatures(os OsType, arch ArchType, features ...string) { argument 408 defaultArchFeatureMap[os] = make(map[ArchType][]string)
|
D | arch.go | 94 ArchType ArchType member 112 s := a.ArchType.String() 125 type ArchType struct { struct 137 func (a ArchType) String() string { argument 144 archTypeList []ArchType 151 Common = ArchType{ 156 var archTypeMap = map[string]ArchType{} 158 func newArch(name, multilib string) ArchType { 159 archType := ArchType{ 171 func ArchTypeList() []ArchType { [all …]
|
D | packaging.go | 122 func (p *PackagingBase) getDepsForArch(ctx BaseModuleContext, arch ArchType) []string { 124 if arch == ctx.Target().Arch.ArchType && len(ctx.MultiTargets()) == 0 { 135 if t.Arch.ArchType == arch { 143 if ctx.Arch().ArchType == Common { 163 if ctx.Arch().ArchType != Common { 164 ret = append(ret, Target{Os: ctx.Os(), Arch: Arch{ArchType: Common}}) 192 for _, dep := range p.getDepsForArch(ctx, t.Arch.ArchType) {
|
D | bazel_handler.go | 57 archType ArchType 66 GetOutputFiles(label string, archType ArchType) ([]string, bool) argument 70 GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error) argument 130 func (m MockBazelContext) GetOutputFiles(label string, archType ArchType) ([]string, bool) { 135 func (m MockBazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error) { 156 func (bazelCtx *bazelContext) GetOutputFiles(label string, archType ArchType) ([]string, bool) { 166 func (bazelCtx *bazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, erro… 177 func (n noopBazelContext) GetOutputFiles(label string, archType ArchType) ([]string, bool) { 181 func (n noopBazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error) { 185 func (n noopBazelContext) GetPrebuiltCcStaticLibraryFiles(label string, archType ArchType) ([]strin… [all …]
|
D | arch_test.go | 451 …{Android, Arch{ArchType: X86_64, ArchVariant: "silvermont", Abi: []string{"arm64-v8a"}}, NativeBri… 452 …{Android, Arch{ArchType: X86, ArchVariant: "silvermont", Abi: []string{"armeabi-v7a"}}, NativeBrid… 453 …{Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeE… 454 …{Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBr…
|
D | androidmk.go | 521 archStr := amod.Arch().ArchType.String() 527 if amod.Arch().ArchType != Common { 532 if amod.Arch().ArchType != Common { 539 if amod.Arch().ArchType != Common { 595 if amod.Arch().ArchType != ctx.Config().Targets[amod.Os()][0].Arch.ArchType { 824 if amod.Arch().ArchType != ctx.Config().Targets[amod.Os()][0].Arch.ArchType {
|
D | filegroup.go | 114 filePaths, ok := bazelCtx.GetOutputFiles(fg.GetBazelLabel(ctx, fg), ctx.Arch().ArchType)
|
/build/soong/rust/config/ |
D | toolchain.go | 151 var toolchainFactories = make(map[android.OsType]map[android.ArchType]toolchainFactory) 153 func registerToolchainFactory(os android.OsType, arch android.ArchType, factory toolchainFactory) { argument 155 toolchainFactories[os] = make(map[android.ArchType]toolchainFactory) 161 factory := toolchainFactories[os][arch.ArchType]
|
D | global.go | 36 StdEnvArch = map[android.ArchType]string{
|
/build/soong/python/ |
D | installer.go | 52 if ctx.Arch().ArchType.Multilib == "lib64" && installer.dir64 != "" { 55 if !ctx.Host() && ctx.Config().HasMultilibConflict(ctx.Arch().ArchType) { 56 dir = filepath.Join(dir, ctx.Arch().ArchType.String())
|
/build/soong/cc/ |
D | snapshot_utils.go | 84 func snapshotMapKey(name string, arch android.ArchType) string { argument 90 func (s *snapshotMap) add(name string, arch android.ArchType, snapshot string) { 96 func (s *snapshotMap) get(name string, arch android.ArchType) (snapshot string, found bool) {
|
D | api_level.go | 24 arch android.ArchType) android.ApiLevel { argument 39 min := minApiForArch(ctx, ctx.Arch().ArchType)
|
D | installer.go | 71 } else if !ctx.Host() && ctx.Config().HasMultilibConflict(ctx.Arch().ArchType) { 72 dir = filepath.Join(dir, ctx.Arch().ArchType.String())
|
D | stl.go | 149 if ctx.Arch().ArchType == android.Arm { 246 if ctx.Arch().ArchType == android.Arm {
|
D | fuzz.go | 255 "fuzz", ctx.Target().Arch.ArchType.String(), ctx.ModuleName()) 257 "fuzz", ctx.Target().Arch.ArchType.String(), ctx.ModuleName()) 316 lib, ctx.Host(), ctx.Arch().ArchType.String())) 321 sharedLibrarySymbolsInstallLocation(lib, ctx.Arch().ArchType.String())) 426 archString := ccModule.Arch().ArchType.String()
|
D | sanitize.go | 285 if len(arches) == 0 || inList(ctx.Arch().ArchType.Name, arches) { 378 if ctx.Arch().ArchType == android.Arm64 { 394 …if s.Cfi == nil && ctx.Config().CFIEnabledForPath(ctx.ModuleDir()) && ctx.Arch().ArchType == andro… 408 if ctx.Arch().ArchType != android.Arm64 { 413 if ctx.Arch().ArchType != android.Arm64 { 418 if ctx.Arch().ArchType != android.Arm64 { 563 if ctx.Arch().ArchType == android.Arm { 632 if ctx.Arch().ArchType == android.Arm { 1386 arch := c.Module().Target().Arch.ArchType.String()
|
/build/soong/java/ |
D | app_set_test.go | 69 {Os: android.Android, Arch: android.Arch{ArchType: android.X86}}, 84 {Os: android.Android, Arch: android.Arch{ArchType: android.X86_64}}, 85 {Os: android.Android, Arch: android.Arch{ArchType: android.X86}},
|
D | dexpreopt.go | 177 var archs []android.ArchType 181 archs = append(archs, target.Arch.ArchType)
|
D | dexpreopt_bootjars_test.go | 120 …filepath.Join("dex_bootjars", target.Os.String(), "system/framework", target.Arch.ArchType.String(…
|
D | bootclasspath_fragment.go | 176 type bootImageFilesByArch map[android.ArchType]android.Paths 932 arch := variant.target.Arch.ArchType 964 func createBootImageTag(arch android.ArchType, baseName string) string { argument 980 arch := variant.target.Arch.ArchType 991 func apexRootRelativePathToBootImageFile(arch android.ArchType, base string) string { argument
|
D | app_set.go | 110 result = append(result, abiName(i, target.Arch.ArchType.String()))
|
/build/soong/cc/config/ |
D | toolchain.go | 26 var toolchainFactories = make(map[android.OsType]map[android.ArchType]toolchainFactory) 28 func registerToolchainFactory(os android.OsType, arch android.ArchType, factory toolchainFactory) { argument 30 toolchainFactories[os] = make(map[android.ArchType]toolchainFactory) 66 factory := toolchainFactories[os][arch.ArchType]
|
/build/soong/rust/ |
D | sanitize.go | 92 if ctx.Arch().ArchType != android.Arm64 { 111 if ctx.Arch().ArchType == android.Arm64 { 141 (mod.IsSanitizerEnabled(cc.Fuzzer) && mctx.Arch().ArchType != android.Arm64) { 147 (mod.IsSanitizerEnabled(cc.Fuzzer) && mctx.Arch().ArchType == android.Arm64) {
|
D | fuzz.go | 161 archString := rustModule.Arch().ArchType.String() 287 "fuzz", ctx.Target().Arch.ArchType.String(), ctx.ModuleName()) 289 "fuzz", ctx.Target().Arch.ArchType.String(), ctx.ModuleName())
|
/build/soong/apex/ |
D | androidmk.go | 194 archStr := fi.module.Target().Arch.ArchType.String() 199 if fi.module.Target().Arch.ArchType != android.Common { 203 if fi.module.Target().Arch.ArchType != android.Common { 209 if fi.module.Target().Arch.ArchType != android.Common {
|