var io.ErrClosedPipe
15 uses
io (current package)
pipe.go#L36: var ErrClosedPipe = errors.New("io: read/write on closed pipe")
pipe.go#L69: err = ErrClosedPipe
pipe.go#L113: return ErrClosedPipe
pipe.go#L122: return ErrClosedPipe
net
pipe.go#L143: if err != nil && err != io.EOF && err != io.ErrClosedPipe {
pipe.go#L152: return 0, io.ErrClosedPipe
pipe.go#L165: return 0, io.ErrClosedPipe
pipe.go#L175: if err != nil && err != io.ErrClosedPipe {
pipe.go#L184: return 0, io.ErrClosedPipe
pipe.go#L186: return 0, io.ErrClosedPipe
pipe.go#L200: return n, io.ErrClosedPipe
pipe.go#L202: return n, io.ErrClosedPipe
pipe.go#L212: return io.ErrClosedPipe
pipe.go#L221: return io.ErrClosedPipe
pipe.go#L229: return io.ErrClosedPipe
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |