MCPcopy
hub / github.com/perkeep/perkeep / Write

Method Write

pkg/client/android/androidx.go:133–138  ·  view source on GitHub ↗
(p []byte)

Source from the content-addressed store, hash-verified

131}
132
133func (c *statTrackingConn) Write(p []byte) (n int, err error) {
134 statTCPWrites.Incr(int64(len(p)))
135 n, err = c.Conn.Write(p)
136 statTCPWrote.Incr(int64(n))
137 return
138}
139
140func (c *statTrackingConn) Read(p []byte) (n int, err error) {
141 n, err = c.Conn.Read(p)

Callers 1

getMultipartOverheadFunction · 0.45

Calls 1

IncrMethod · 0.45

Tested by

no test coverage detected