func io.Copy
15 uses
io (current package)
io.go#L364: written, err = Copy(dst, LimitReader(src, n))
io.go#L387: func Copy(dst Writer, src Reader) (written int64, err error) {
github.com/go-faster/errors
adaptor.go#L67: _, _ = io.Copy(s, &p.buf)
adaptor.go#L121: _, _ = io.Copy(s, &p.buf)
mime
encodedword.go#L339: if _, err = io.Copy(buf, r); err != nil {
mime/multipart
multipart.go#L326: io.Copy(io.Discard, p)
writer.go#L117: _, err := io.Copy(w.w, &b)
net
net.go#L772: return io.Copy(tcpConnWithoutReadFrom{TCPConn: c}, r)
net.go#L796: return io.Copy(w, tcpConnWithoutWriteTo{TCPConn: c})
net/http
server.go#L3954: io.Copy(io.Discard, mb)
transfer.go#L1006: _, err = io.Copy(io.Discard, bodyLocked{b})
transport.go#L2019: n, err = io.Copy(w.pc.conn, r)
os
dir.go#L181: if _, err := io.Copy(w, r); err != nil {
file.go#L205: return io.Copy(fileWithoutReadFrom{File: f}, r)
file.go#L295: return io.Copy(w, fileWithoutWriteTo{File: f})
 |
The pages are generated with Golds v0.8.4. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |