archive/zip.Writer.cw (field)
19 uses
archive/zip (current package)
writer.go#L25: cw *countWriter
writer.go#L44: return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}}
writer.go#L52: if w.cw.count != 0 {
writer.go#L55: w.cw.count = n
writer.go#L61: return w.cw.w.(*bufio.Writer).Flush()
writer.go#L89: start := w.cw.count
writer.go#L132: if _, err := w.cw.Write(buf[:]); err != nil {
writer.go#L135: if _, err := io.WriteString(w.cw, h.Name); err != nil {
writer.go#L138: if _, err := w.cw.Write(h.Extra); err != nil {
writer.go#L141: if _, err := io.WriteString(w.cw, h.Comment); err != nil {
writer.go#L145: end := w.cw.count
writer.go#L177: if _, err := w.cw.Write(buf[:]); err != nil {
writer.go#L198: if _, err := w.cw.Write(buf[:]); err != nil {
writer.go#L201: if _, err := io.WriteString(w.cw, w.comment); err != nil {
writer.go#L205: return w.cw.w.(*bufio.Writer).Flush()
writer.go#L328: offset: uint64(w.cw.count),
writer.go#L350: zipw: w.cw,
writer.go#L351: compCount: &countWriter{w: w.cw},
writer.go#L368: if err := writeHeader(w.cw, fh); err != nil {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |