HomeSort by relevance Sort by last modified time
    Searched refs:GOOS (Results 276 - 300 of 464) sorted by null

<<111213141516171819

  /prebuilts/go/darwin-x86/src/net/
tcpsock_test.go 470 switch runtime.GOOS {
475 t.Skipf("not supported on %s", runtime.GOOS)
479 t.Skipf("not supported on %s", runtime.GOOS)
625 if runtime.GOOS == "windows" {
650 switch runtime.GOOS {
  /prebuilts/go/darwin-x86/src/runtime/
extern.go 158 The GOARCH, GOOS, GOPATH, and GOROOT environment variables complete
161 GOARCH, GOOS, and GOROOT are recorded at compile time and made available by
245 // GOOS is the running program's operating system target:
247 const GOOS string = sys.GOOS
runtime-gdb_test.go 25 if runtime.GOOS == "darwin" {
28 if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64" {
245 if runtime.GOOS == "netbsd" {
signal_amd64x.go 49 if GOOS == "darwin" {
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter_test.go 27 switch platform := runtime.GOOS + "-" + runtime.GOARCH; platform {
63 dirname := filepath.Join(runtime.GOROOT(), "pkg", runtime.GOOS+"_"+runtime.GOARCH, dir)
317 if runtime.GOOS == "windows" {
403 if runtime.GOOS == "windows" {
442 if runtime.GOOS == "windows" {
  /prebuilts/go/linux-x86/src/net/http/cgi/
host_test.go 371 if runtime.GOOS == "windows" {
372 t.Skipf("skipping test on %q", runtime.GOOS)
432 if runtime.GOOS == "windows" {
433 t.Skipf("skipping test on %q", runtime.GOOS)
459 if runtime.GOOS != "windows" {
  /prebuilts/go/linux-x86/src/net/
tcpsock_test.go 470 switch runtime.GOOS {
475 t.Skipf("not supported on %s", runtime.GOOS)
479 t.Skipf("not supported on %s", runtime.GOOS)
625 if runtime.GOOS == "windows" {
650 switch runtime.GOOS {
  /prebuilts/go/linux-x86/src/runtime/
extern.go 158 The GOARCH, GOOS, GOPATH, and GOROOT environment variables complete
161 GOARCH, GOOS, and GOROOT are recorded at compile time and made available by
245 // GOOS is the running program's operating system target:
247 const GOOS string = sys.GOOS
runtime-gdb_test.go 25 if runtime.GOOS == "darwin" {
28 if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64" {
245 if runtime.GOOS == "netbsd" {
  /prebuilts/go/darwin-x86/src/cmd/go/
go_test.go 38 switch runtime.GOOS {
101 switch runtime.GOOS {
151 t.Skip("skipping external tests on %s/%s", runtime.GOOS, runtime.GOARCH)
533 if runtime.GOOS != "windows" && st.Mode()&0111 == 0 {
917 tg.setenv("GOOS", "linux")
1009 if runtime.GOOS == "windows" {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
go_test.go 38 switch runtime.GOOS {
101 switch runtime.GOOS {
151 t.Skip("skipping external tests on %s/%s", runtime.GOOS, runtime.GOARCH)
533 if runtime.GOOS != "windows" && st.Mode()&0111 == 0 {
917 tg.setenv("GOOS", "linux")
1009 if runtime.GOOS == "windows" {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
build.go 28 goos string
116 b = os.Getenv("GOOS")
120 goos = b
121 if find(goos, okgoos) < 0 {
122 fatal("unknown $GOOS %s", goos)
226 os.Setenv("GOOS", goos)
405 if goos != gohostos || goarch != gohostarch {
406 p := pathf("%s/pkg/%s_%s", goroot, goos, goarch
27 goos string var
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
build.go 28 goos string
116 b = os.Getenv("GOOS")
120 goos = b
121 if find(goos, okgoos) < 0 {
122 fatal("unknown $GOOS %s", goos)
226 os.Setenv("GOOS", goos)
405 if goos != gohostos || goarch != gohostarch {
406 p := pathf("%s/pkg/%s_%s", goroot, goos, goarch
27 goos string var
    [all...]
  /build/soong/ui/build/
config.go 408 if runtime.GOOS == "linux" {
416 if runtime.GOOS == "linux" {
418 } else if runtime.GOOS == "darwin" {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
config.go 35 nacl bool // GOOS=nacl
205 c.noDuffDevice = obj.GOOS == "darwin" // darwin linker cannot handle BR26 reloc with non-zero addend
276 c.nacl = obj.GOOS == "nacl"
280 if obj.GOOS == "plan9" && arch == "amd64" {
  /prebuilts/go/darwin-x86/src/crypto/x509/
cert_pool.go 33 if runtime.GOOS == "windows" {
  /prebuilts/go/darwin-x86/src/os/
getwd.go 27 if runtime.GOOS == "windows" {
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/protopprof/
protomemprofile_test.go 20 if runtime.GOOS != "linux" {
protopprof.go 89 if runtime.GOOS == "linux" {
  /prebuilts/go/darwin-x86/test/
run.go 51 goos, goarch string
76 goos = getenv("GOOS", runtime.GOOS)
339 GOOS string
345 func shouldTest(src string, goos, goarch string) (ok bool, whyNot string) {
361 GOOS: goos,
406 if name == ctxt.GOOS || name == ctxt.GOARCH {
458 if ok, why := shouldTest(t.src[:pkgPos], goos, goarch); !ok
50 goos, goarch string var
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
config.go 35 nacl bool // GOOS=nacl
205 c.noDuffDevice = obj.GOOS == "darwin" // darwin linker cannot handle BR26 reloc with non-zero addend
276 c.nacl = obj.GOOS == "nacl"
280 if obj.GOOS == "plan9" && arch == "amd64" {
  /prebuilts/go/linux-x86/src/crypto/x509/
cert_pool.go 33 if runtime.GOOS == "windows" {
  /prebuilts/go/linux-x86/src/os/
getwd.go 27 if runtime.GOOS == "windows" {
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/protopprof/
protomemprofile_test.go 20 if runtime.GOOS != "linux" {
protopprof.go 89 if runtime.GOOS == "linux" {

Completed in 1208 milliseconds

<<111213141516171819