/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue10303.go | 5 // Issue 10303. Pointers passed to C were not marked as escaping (bug in cgo).
|
basic.go | 5 // Basic test cases for cgo.
|
cgo_test.go | 10 // so that they can use cgo (import "C").
|
/prebuilts/go/darwin-x86/src/runtime/ |
debug.go | 39 // NumCgoCall returns the number of cgo calls made by the current process.
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
buildid_linux.go | 8 // to generate a separate build ID for each package using cgo, and the
|
issue10303.go | 5 // Issue 10303. Pointers passed to C were not marked as escaping (bug in cgo).
|
basic.go | 5 // Basic test cases for cgo.
|
/prebuilts/go/linux-x86/src/runtime/ |
debug.go | 39 // NumCgoCall returns the number of cgo calls made by the current process.
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
build.go | 540 // cmd/cgo is handled specially in b.action, so that we can 543 if goTools[p.ImportPath] == toTool && p.ImportPath != "cmd/cgo" { 625 cgo *action // action for cgo binary if needed 857 // generate for cgo as a dependency of the build of any package 858 // using cgo, to make sure we do not overwrite the binary while 859 // a package is using it. If this is a cross-build, then the cgo we 860 // are writing is not the cgo we need to use. 862 if (len(p.CgoFiles) > 0 || p.Standard && p.ImportPath == "runtime/cgo") && !buildLinkshared && buildBuildmode != "shared" { 864 p1 := loadPackage("cmd/cgo", &stk 2867 func (b *builder) cgo(p *Package, cgoExe, obj string, pcCFLAGS, pcLDFLAGS, cgofiles, gccfiles, gxxfiles, mfiles []string) (outGo, outObj []string, err error) { func [all...] |
discovery.go | 9 // to avoid needing to build net (and thus use cgo) during the
|
/prebuilts/go/linux-x86/src/cmd/go/ |
build.go | 540 // cmd/cgo is handled specially in b.action, so that we can 543 if goTools[p.ImportPath] == toTool && p.ImportPath != "cmd/cgo" { 625 cgo *action // action for cgo binary if needed 857 // generate for cgo as a dependency of the build of any package 858 // using cgo, to make sure we do not overwrite the binary while 859 // a package is using it. If this is a cross-build, then the cgo we 860 // are writing is not the cgo we need to use. 862 if (len(p.CgoFiles) > 0 || p.Standard && p.ImportPath == "runtime/cgo") && !buildLinkshared && buildBuildmode != "shared" { 864 p1 := loadPackage("cmd/cgo", &stk 2867 func (b *builder) cgo(p *Package, cgoExe, obj string, pcCFLAGS, pcLDFLAGS, cgofiles, gccfiles, gxxfiles, mfiles []string) (outGo, outObj []string, err error) { func [all...] |
/prebuilts/go/darwin-x86/src/go/build/ |
build.go | 35 CgoEnabled bool // whether cgo can be used 309 // cgo must be explicitly enabled for cross compilation builds 378 // Cgo directives 379 CgoCFLAGS []string // Cgo CFLAGS directives 380 CgoCPPFLAGS []string // Cgo CPPFLAGS directives 381 CgoCXXFLAGS []string // Cgo CXXFLAGS directives 382 CgoLDFLAGS []string // Cgo LDFLAGS directives 383 CgoPkgConfig []string // Cgo pkg-config directives 727 // Record imports and information about cgo. 753 return p, fmt.Errorf("use of cgo in test %s not supported", filename [all...] |
/prebuilts/go/linux-x86/src/go/build/ |
build.go | 35 CgoEnabled bool // whether cgo can be used 309 // cgo must be explicitly enabled for cross compilation builds 378 // Cgo directives 379 CgoCFLAGS []string // Cgo CFLAGS directives 380 CgoCPPFLAGS []string // Cgo CPPFLAGS directives 381 CgoCXXFLAGS []string // Cgo CXXFLAGS directives 382 CgoLDFLAGS []string // Cgo LDFLAGS directives 383 CgoPkgConfig []string // Cgo pkg-config directives 727 // Record imports and information about cgo. 753 return p, fmt.Errorf("use of cgo in test %s not supported", filename [all...] |
/prebuilts/go/darwin-x86/src/net/ |
net.go | 46 listed in /etc/resolv.conf, or it can use a cgo-based resolver that calls C 51 When cgo is available, the cgo-based resolver is used instead under a variety of 61 GODEBUG environment variable (see package runtime) to go or cgo, as in: 64 export GODEBUG=netdns=cgo # force cgo resolver 90 // to build this binary, and whether cgo is available. 93 netGo bool // set true in cgo_stub.go for build tag "netgo" (or no cgo) 562 // Limit the number of concurrent cgo-using goroutines, because
|
lookup_unix.go | 58 // cgo not available (or netgo); fall back to Go's DNS resolver 70 // cgo not available (or netgo); fall back to Go's DNS resolver
|
/prebuilts/go/linux-x86/src/net/ |
net.go | 46 listed in /etc/resolv.conf, or it can use a cgo-based resolver that calls C 51 When cgo is available, the cgo-based resolver is used instead under a variety of 61 GODEBUG environment variable (see package runtime) to go or cgo, as in: 64 export GODEBUG=netdns=cgo # force cgo resolver 90 // to build this binary, and whether cgo is available. 93 netGo bool // set true in cgo_stub.go for build tag "netgo" (or no cgo) 562 // Limit the number of concurrent cgo-using goroutines, because
|
lookup_unix.go | 58 // cgo not available (or netgo); fall back to Go's DNS resolver 70 // cgo not available (or netgo); fall back to Go's DNS resolver
|
/prebuilts/go/darwin-x86/doc/progs/ |
run.go | 222 // cgo3 and cgo4 don't run on netbsd, since cgo cannot handle stdout correctly, see issue #10715. 226 // cgo3 and cgo4 don't run on openbsd and solaris, since cgo cannot handle stdout correctly, see issue #10715.
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/ |
sym.go | 120 * Known to low-level assembly in package runtime and runtime/cgo. 147 * Explained in ../../runtime/cgo/gcc_darwin_*.c.
|
/prebuilts/go/darwin-x86/src/syscall/ |
ztypes_netbsd_386.go | 1 // Created by cgo -godefs - DO NOT EDIT 2 // cgo -godefs types_netbsd.go
|
ztypes_solaris_amd64.go | 1 // Created by cgo -godefs - DO NOT EDIT 2 // cgo -godefs types_solaris.go
|
/prebuilts/go/linux-x86/doc/progs/ |
run.go | 222 // cgo3 and cgo4 don't run on netbsd, since cgo cannot handle stdout correctly, see issue #10715. 226 // cgo3 and cgo4 don't run on openbsd and solaris, since cgo cannot handle stdout correctly, see issue #10715.
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/ |
sym.go | 120 * Known to low-level assembly in package runtime and runtime/cgo. 147 * Explained in ../../runtime/cgo/gcc_darwin_*.c.
|
/prebuilts/go/linux-x86/src/syscall/ |
ztypes_netbsd_386.go | 1 // Created by cgo -godefs - DO NOT EDIT 2 // cgo -godefs types_netbsd.go
|
ztypes_solaris_amd64.go | 1 // Created by cgo -godefs - DO NOT EDIT 2 // cgo -godefs types_solaris.go
|