Searched refs:Os (Results 1 – 25 of 34) sorted by relevance
12
/build/soong/android/ |
D | paths_test.go | 229 hostTarget := Target{Os: Linux, Arch: Arch{ArchType: X86}} 230 deviceTarget := Target{Os: Android, Arch: Arch{ArchType: Arm64}} 243 os: hostTarget.Os, 256 os: deviceTarget.Os, 268 os: deviceTarget.Os, 283 os: deviceTarget.Os, 298 os: deviceTarget.Os, 313 os: deviceTarget.Os, 328 os: deviceTarget.Os, 341 os: deviceTarget.Os, [all …]
|
D | androidmk.go | 523 switch amod.Os().Class { 573 makeOs := amod.Os().String() 574 if amod.Os() == Linux || amod.Os() == LinuxBionic { 583 switch amod.Os().Class { 595 if amod.Arch().ArchType != ctx.Config().Targets[amod.Os()][0].Arch.ArchType { 812 switch amod.Os().Class { 824 if amod.Arch().ArchType != ctx.Config().Targets[amod.Os()][0].Arch.ArchType { 907 module.Os() == LinuxBionic
|
D | arch.go | 274 commonTargetMap[name] = Target{Os: os, Arch: CommonArch} 358 Os OsType member 392 return target.Os.String() 1354 os := m.Os() 1433 Os: os, 1528 if target.Os == Android && target.Arch.ArchType == Arm { 1575 Os: Android, 1650 if _, found := set[t.Os.String()]; !found { 1651 set[t.Os.String()] = true 1652 ret = append(ret, commonTargetMap[t.Os.String()]) [all …]
|
D | image.go | 75 if ctx.Os() != Android {
|
D | packaging.go | 164 ret = append(ret, Target{Os: ctx.Os(), Arch: Arch{ArchType: Common}})
|
D | prebuilt_test.go | 336 t.Run(foo.Module().Target().Os.String(), func(t *testing.T) { 372 if os == foo.Module().Target().Os {
|
/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_config.go | 109 imageDir := c.dir.Join(ctx, target.Os.String(), c.installDirOnHost, arch.String()) 116 dexLocations: c.modules.DevicePaths(ctx.Config(), target.Os),
|
D | dexpreopt_bootjars_test.go | 120 …filepath.Join("dex_bootjars", target.Os.String(), "system/framework", target.Arch.ArchType.String(…
|
D | robolectric.go | 384 if ctx.Target().Os != ctx.Config().BuildOSCommonTarget.Os {
|
/build/soong/cc/ |
D | makevars.go | 184 switch target.Os.Class { 192 toolchain := config.FindToolchain(target.Os, target.Arch) 198 if target.Os.Class == android.Device { 202 if target.Os.Class == android.Host && ctx.Config().HostStaticBinaries() { 260 if target.Os.Class == android.Device { 275 if target.Os == android.Darwin { 287 if target.Os.Class == android.Device { 298 if target.Os.Class == android.Host {
|
D | binary.go | 179 if ctx.Os() == android.LinuxBionic && !binary.static() { 224 if ctx.Os() == android.Linux { 289 switch ctx.Os() { 306 if ctx.Os() == android.LinuxBionic { 405 if ctx.Os() == android.LinuxBionic && !binary.static() { 519 if ctx.Os().Class == android.Host {
|
D | sdk.go | 28 if ctx.Os() != android.Android {
|
D | androidmk.go | 41 Os() android.OsType methodSpec 453 if ctx.Target().Os.Class == android.Host {
|
D | compiler.go | 416 if ctx.Os().Class == android.Device { 432 if ctx.Os().Class == android.Device {
|
D | sanitize.go | 429 if !ctx.Os().Linux() { 474 …if ctx.Os() != android.Windows && (Bool(s.All_undefined) || Bool(s.Undefined) || Bool(s.Address) |… 974 if c.Os() == android.Linux {
|
D | vendor_snapshot.go | 169 if m.Target().Os.Class != android.Device {
|
/build/soong/cc/config/ |
D | toolchain.go | 36 Os() android.OsType methodSpec 45 t, err := findToolchain(ctx.Os(), ctx.Arch())
|
/build/soong/rust/ |
D | sanitize.go | 83 if ctx.Os() == android.Android && Bool(s.Fuzzer) { 87 if ctx.Os() == android.Android && Bool(s.Address) { 96 if ctx.Os() == android.Android && Bool(s.Hwaddress) {
|
D | rust.go | 746 mod.cachedToolchain = config.FindToolchain(ctx.Os(), ctx.Arch()) 752 return cc_config.FindToolchain(ctx.Os(), ctx.Arch()) 970 if dep.Target().Os != ctx.Os() { 1005 if ccDep.Module().Target().Os != ctx.Os() {
|
D | androidmk.go | 187 if ctx.Target().Os.Class == android.Host {
|
D | compiler.go | 312 if ctx.Target().Os == android.BuildOs {
|
/build/soong/apex/ |
D | androidmk.go | 196 switch fi.module.Target().Os.Class { 214 makeOs := fi.module.Target().Os.String() 215 if fi.module.Target().Os == android.Linux || fi.module.Target().Os == android.LinuxBionic {
|
/build/soong/python/ |
D | androidmk.go | 80 if base.Target().Os.Class == android.Host {
|
/build/soong/sdk/ |
D | update.go | 525 osTypeToCombinedProperties[combined.sdkVariant.Os()] = combined 544 …if memberVariantDep.memberType.IsHostOsDependent() && memberVariantDep.variant.Target().Os.Class =… 545 …targetString := memberVariantDep.variant.Target().Os.String() + "_" + memberVariantDep.variant.Tar… 1044 osClass := variant.Target().Os.Class 1261 properties.Base().Os = osType 1577 osType := variant.Target().Os 1593 commonProperties.Base().Os = android.CommonOS
|
12