/prebuilts/go/darwin-x86/src/runtime/cgo/ |
cgo.go | 6 Package cgo contains runtime support for code generated 7 by the cgo tool. See the documentation for the cgo command 8 for details on using cgo. 10 package cgo package 14 #cgo darwin,!arm,!arm64 LDFLAGS: -lpthread 15 #cgo darwin,arm LDFLAGS: -framework CoreFoundation 16 #cgo darwin,arm64 LDFLAGS: -framework CoreFoundation 17 #cgo dragonfly LDFLAGS: -lpthread 18 #cgo freebsd LDFLAGS: -lpthrea [all...] |
/prebuilts/go/linux-x86/src/runtime/cgo/ |
cgo.go | 6 Package cgo contains runtime support for code generated 7 by the cgo tool. See the documentation for the cgo command 8 for details on using cgo. 10 package cgo package 14 #cgo darwin,!arm,!arm64 LDFLAGS: -lpthread 15 #cgo darwin,arm LDFLAGS: -framework CoreFoundation 16 #cgo darwin,arm64 LDFLAGS: -framework CoreFoundation 17 #cgo dragonfly LDFLAGS: -lpthread 18 #cgo freebsd LDFLAGS: -lpthrea [all...] |
/external/skia/experimental/go-skia/ |
skia.go | 7 #cgo LDFLAGS: -lGL 8 #cgo LDFLAGS: -lGLU 9 #cgo LDFLAGS: -lX11 10 #cgo LDFLAGS: -ldl 11 #cgo LDFLAGS: -lfontconfig 12 #cgo LDFLAGS: -lfreetype 13 #cgo LDFLAGS: -lgif 14 #cgo LDFLAGS: -lm 15 #cgo LDFLAGS: -lpng 16 #cgo LDFLAGS: -lstdc+ [all...] |
/prebuilts/go/darwin-x86/misc/cgo/testso/ |
cgoso.go | 10 #cgo linux LDFLAGS: -L. -lcgosotest 11 #cgo dragonfly LDFLAGS: -L. -l cgosotest 12 #cgo freebsd LDFLAGS: -L. -l cgosotest 13 #cgo openbsd LDFLAGS: -L. -l cgosotest 14 #cgo solaris LDFLAGS: -L. -lcgosotest 15 #cgo netbsd LDFLAGS: -L. libcgosotest.so 16 #cgo darwin LDFLAGS: -L. libcgosotest.dylib 17 #cgo windows LDFLAGS: -L. libcgosotest.dll
|
/prebuilts/go/linux-x86/misc/cgo/testso/ |
cgoso.go | 10 #cgo linux LDFLAGS: -L. -lcgosotest 11 #cgo dragonfly LDFLAGS: -L. -l cgosotest 12 #cgo freebsd LDFLAGS: -L. -l cgosotest 13 #cgo openbsd LDFLAGS: -L. -l cgosotest 14 #cgo solaris LDFLAGS: -L. -lcgosotest 15 #cgo netbsd LDFLAGS: -L. libcgosotest.so 16 #cgo darwin LDFLAGS: -L. libcgosotest.dylib 17 #cgo windows LDFLAGS: -L. libcgosotest.dll
|
/prebuilts/go/darwin-x86/misc/cgo/testsovar/ |
cgoso.go | 8 // in shared object file via cgo. 13 #cgo windows CFLAGS: -DIMPORT_DLL 14 #cgo linux LDFLAGS: -L. -lcgosotest 15 #cgo dragonfly LDFLAGS: -L. -l cgosotest 16 #cgo freebsd LDFLAGS: -L. -l cgosotest 17 #cgo openbsd LDFLAGS: -L. -l cgosotest 18 #cgo solaris LDFLAGS: -L. -lcgosotest 19 #cgo netbsd LDFLAGS: -L. libcgosotest.so 20 #cgo darwin LDFLAGS: -L. libcgosotest.dylib 21 #cgo windows LDFLAGS: -L. libcgosotest.dl [all...] |
/prebuilts/go/linux-x86/misc/cgo/testsovar/ |
cgoso.go | 8 // in shared object file via cgo. 13 #cgo windows CFLAGS: -DIMPORT_DLL 14 #cgo linux LDFLAGS: -L. -lcgosotest 15 #cgo dragonfly LDFLAGS: -L. -l cgosotest 16 #cgo freebsd LDFLAGS: -L. -l cgosotest 17 #cgo openbsd LDFLAGS: -L. -l cgosotest 18 #cgo solaris LDFLAGS: -L. -lcgosotest 19 #cgo netbsd LDFLAGS: -L. libcgosotest.so 20 #cgo darwin LDFLAGS: -L. libcgosotest.dylib 21 #cgo windows LDFLAGS: -L. libcgosotest.dl [all...] |
/prebuilts/go/darwin-x86/misc/cgo/errors/ |
test.bash | 11 echo 1>&2 misc/cgo/errors/test.bash: BUG: cannot find ERROR HERE in $file 15 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected cgo to fail but it succeeded 19 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected error output but saw none 23 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected error on line $line but saw:
|
err1.go | 8 #cgo LDFLAGS: -c
|
/prebuilts/go/linux-x86/misc/cgo/errors/ |
test.bash | 11 echo 1>&2 misc/cgo/errors/test.bash: BUG: cannot find ERROR HERE in $file 15 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected cgo to fail but it succeeded 19 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected error output but saw none 23 echo 1>&2 misc/cgo/errors/test.bash: BUG: expected error on line $line but saw:
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
cflags.go | 5 // Test that the #cgo CFLAGS directive works, 11 #cgo CFLAGS: -DCOMMON_VALUE=123 12 #cgo windows CFLAGS: -DIS_WINDOWS=1 13 #cgo !windows CFLAGS: -DIS_WINDOWS=0
|
issue3945.go | 7 // Test that cgo reserves enough stack space during cgo call.
|
issue7234_test.go | 9 // This test actually doesn't have anything to do with cgo. It is a 15 var v7234 = [...]string{"runtime/cgo"} 18 if v7234[0] != "runtime/cgo" {
|
/prebuilts/go/darwin-x86/misc/cgo/testgodefs/ |
test.bash | 7 # We are testing cgo -godefs, which translates Go files that use 15 go tool cgo -godefs ${FP}.go > ${FP}_defs.go
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
cflags.go | 5 // Test that the #cgo CFLAGS directive works, 11 #cgo CFLAGS: -DCOMMON_VALUE=123 12 #cgo windows CFLAGS: -DIS_WINDOWS=1 13 #cgo !windows CFLAGS: -DIS_WINDOWS=0
|
issue3945.go | 7 // Test that cgo reserves enough stack space during cgo call.
|
issue7234_test.go | 9 // This test actually doesn't have anything to do with cgo. It is a 15 var v7234 = [...]string{"runtime/cgo"} 18 if v7234[0] != "runtime/cgo" {
|
/prebuilts/go/linux-x86/misc/cgo/testgodefs/ |
test.bash | 7 # We are testing cgo -godefs, which translates Go files that use 15 go tool cgo -godefs ${FP}.go > ${FP}_defs.go
|
/prebuilts/go/darwin-x86/src/net/ |
cgo_solaris.go | 5 // +build cgo,!netgo 10 #cgo LDFLAGS: -lsocket -lnsl -lsendfile
|
conf_netcgo.go | 11 // Fail if cgo isn't available. 16 // The build tag "netcgo" forces use of the cgo DNS resolver.
|
/prebuilts/go/linux-x86/src/net/ |
cgo_solaris.go | 5 // +build cgo,!netgo 10 #cgo LDFLAGS: -lsocket -lnsl -lsendfile
|
conf_netcgo.go | 11 // Fail if cgo isn't available. 16 // The build tag "netcgo" forces use of the cgo DNS resolver.
|
/prebuilts/go/darwin-x86/misc/cgo/nocgo/ |
nocgo.go | 5 // Test that -static works when not using cgo. This test is in 6 // misc/cgo to take advantage of the testing framework support for 15 // goroutines will be created via the runtime/cgo package.
|
/prebuilts/go/linux-x86/misc/cgo/nocgo/ |
nocgo.go | 5 // Test that -static works when not using cgo. This test is in 6 // misc/cgo to take advantage of the testing framework support for 15 // goroutines will be created via the runtime/cgo package.
|
/prebuilts/go/darwin-x86/src/crypto/x509/ |
root_nocgo_darwin.go | 5 // +build !cgo
|