HomeSort by relevance Sort by last modified time
    Searched refs:GOOS (Results 176 - 200 of 554) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
route_test.go 22 if runtime.GOOS == "openbsd" {
32 if runtime.GOOS == "openbsd" {
116 if runtime.GOOS == "openbsd" {
131 if runtime.GOOS == "openbsd" {
360 if runtime.GOOS == "openbsd" {
373 if runtime.GOOS == "netbsd" {
  /prebuilts/go/darwin-x86/src/net/
listen_test.go 65 switch runtime.GOOS {
67 t.Skipf("not supported on %s", runtime.GOOS)
126 switch runtime.GOOS {
128 t.Skipf("not supported on %s", runtime.GOOS)
225 switch runtime.GOOS {
227 t.Skipf("not supported on %s", runtime.GOOS)
315 switch runtime.GOOS {
317 t.Skipf("not supported on %s", runtime.GOOS)
490 switch runtime.GOOS {
492 t.Skipf("not supported on %s", runtime.GOOS)
    [all...]
error_test.go 138 switch runtime.GOOS {
140 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
185 switch runtime.GOOS {
187 t.Skipf("not supported on %s", runtime.GOOS)
214 switch runtime.GOOS {
216 t.Skipf("not supported on %s", runtime.GOOS)
287 switch runtime.GOOS {
289 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
347 switch runtime.GOOS {
349 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
    [all...]
net_test.go 19 switch runtime.GOOS {
21 t.Skipf("not supported on %s", runtime.GOOS)
71 switch runtime.GOOS {
73 t.Skipf("not supported on %s", runtime.GOOS)
313 switch runtime.GOOS {
315 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
397 if runtime.GOOS == "windows" {
409 if runtime.GOOS == "windows" {
  /prebuilts/go/linux-x86/src/net/
listen_test.go 65 switch runtime.GOOS {
67 t.Skipf("not supported on %s", runtime.GOOS)
126 switch runtime.GOOS {
128 t.Skipf("not supported on %s", runtime.GOOS)
225 switch runtime.GOOS {
227 t.Skipf("not supported on %s", runtime.GOOS)
315 switch runtime.GOOS {
317 t.Skipf("not supported on %s", runtime.GOOS)
490 switch runtime.GOOS {
492 t.Skipf("not supported on %s", runtime.GOOS)
    [all...]
error_test.go 138 switch runtime.GOOS {
140 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
185 switch runtime.GOOS {
187 t.Skipf("not supported on %s", runtime.GOOS)
214 switch runtime.GOOS {
216 t.Skipf("not supported on %s", runtime.GOOS)
287 switch runtime.GOOS {
289 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
347 switch runtime.GOOS {
349 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
    [all...]
net_test.go 19 switch runtime.GOOS {
21 t.Skipf("not supported on %s", runtime.GOOS)
71 switch runtime.GOOS {
73 t.Skipf("not supported on %s", runtime.GOOS)
313 switch runtime.GOOS {
315 t.Skipf("%s does not have full support of socktest", runtime.GOOS)
397 if runtime.GOOS == "windows" {
409 if runtime.GOOS == "windows" {
  /prebuilts/go/darwin-x86/src/cmd/go/internal/cfg/
cfg.go 67 Goos = BuildContext.GOOS
73 if Goos == "windows" {
95 // Note that we must use runtime.GOOS and runtime.GOARCH here,
99 build.ToolDir = filepath.Join(GOROOT, "pkg/tool/"+runtime.GOOS+"_"+runtime.GOARCH)
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
sym.go 48 if err := ctxt.Headtype.Set(objabi.GOOS); err != nil {
49 log.Fatalf("unknown goos %s", objabi.GOOS)
53 ctxt.Framepointer_enabled = objabi.Framepointer_enabled(objabi.GOOS, arch.Name)
  /prebuilts/go/linux-x86/src/cmd/go/internal/cfg/
cfg.go 67 Goos = BuildContext.GOOS
73 if Goos == "windows" {
95 // Note that we must use runtime.GOOS and runtime.GOARCH here,
99 build.ToolDir = filepath.Join(GOROOT, "pkg/tool/"+runtime.GOOS+"_"+runtime.GOARCH)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
sym.go 48 if err := ctxt.Headtype.Set(objabi.GOOS); err != nil {
49 log.Fatalf("unknown goos %s", objabi.GOOS)
53 ctxt.Framepointer_enabled = objabi.Framepointer_enabled(objabi.GOOS, arch.Name)
  /prebuilts/go/darwin-x86/src/os/
getwd.go 27 if runtime.GOOS == "windows" || runtime.GOOS == "plan9" {
path.go 101 if err == nil && (runtime.GOOS == "plan9" || runtime.GOOS == "nacl") {
  /prebuilts/go/linux-x86/src/os/
getwd.go 27 if runtime.GOOS == "windows" || runtime.GOOS == "plan9" {
path.go 101 if err == nil && (runtime.GOOS == "plan9" || runtime.GOOS == "nacl") {
  /prebuilts/go/darwin-x86/src/go/build/
build.go 32 GOOS string // target operating system
45 // consider the values of GOARCH and GOOS as satisfied tags.
257 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
258 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
263 if runtime.GOOS == "windows" {
265 } else if runtime.GOOS == "plan9" {
284 c.GOOS = envOr("GOOS", runtime.GOOS)
311 if runtime.GOARCH == c.GOARCH && runtime.GOOS == c.GOOS
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
build.go 32 GOOS string // target operating system
45 // consider the values of GOARCH and GOOS as satisfied tags.
257 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
258 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
263 if runtime.GOOS == "windows" {
265 } else if runtime.GOOS == "plan9" {
284 c.GOOS = envOr("GOOS", runtime.GOOS)
311 if runtime.GOARCH == c.GOARCH && runtime.GOOS == c.GOOS
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
dwarf_test.go 32 if runtime.GOOS == "plan9" {
111 if runtime.GOOS == "plan9" {
206 if runtime.GOOS == "plan9" {
253 if runtime.GOOS == "plan9" {
314 if runtime.GOOS == "plan9" {
531 if runtime.GOOS == "plan9" {
534 if runtime.GOOS == "solaris" {
751 if runtime.GOOS == "plan9" {
754 if runtime.GOOS == "solaris" {
764 if runtime.GOOS == "plan9"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
dwarf_test.go 32 if runtime.GOOS == "plan9" {
111 if runtime.GOOS == "plan9" {
206 if runtime.GOOS == "plan9" {
253 if runtime.GOOS == "plan9" {
314 if runtime.GOOS == "plan9" {
531 if runtime.GOOS == "plan9" {
534 if runtime.GOOS == "solaris" {
751 if runtime.GOOS == "plan9" {
754 if runtime.GOOS == "solaris" {
764 if runtime.GOOS == "plan9"
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/api/
run.go 23 if runtime.GOOS == "windows" {
  /prebuilts/go/darwin-x86/src/cmd/asm/
doc.go 18 The GOOS and GOARCH environment variables set the desired target.
main.go 56 fmt.Fprintf(buf, "go object %s %s %s\n", objabi.GOOS, objabi.GOARCH, objabi.Version)
  /prebuilts/go/darwin-x86/src/cmd/internal/browser/
browser.go 21 switch runtime.GOOS {
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/arm64/
asm_test.go 45 cmd.Env = []string{"GOARCH=arm64", "GOOS=linux"}
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
source_test.go 17 if runtime.GOOS != "linux" || runtime.GOARCH != "amd64" {

Completed in 860 milliseconds

1 2 3 4 5 6 78 91011>>