func os.Pipe

9 uses

	os (current package)
		pipe2_unix.go#L13: func Pipe() (r *File, w *File, err error) {

	os/exec
		exec.go#L539: 	pr, pw, err := os.Pipe()
		exec.go#L588: 	pr, pw, err := os.Pipe()
		exec.go#L1056: 	pr, pw, err := os.Pipe()
		exec.go#L1081: 	pr, pw, err := os.Pipe()
		exec.go#L1106: 	pr, pw, err := os.Pipe()

	go.pact.im/x/zapjournal/tests
		journalctl.go#L16: 	r, w, err := os.Pipe()

	golang.org/x/tools/internal/gocommand
		invoke.go#L313: 			stdoutR, stdoutW, err = os.Pipe()

	testing
		run_example.go#L28: 	r, w, err := os.Pipe()