archive/zip.countWriter.w (field)

7 uses

	archive/zip (current package)
		writer.go#L44: 	return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}}
		writer.go#L61: 	return w.cw.w.(*bufio.Writer).Flush()
		writer.go#L205: 	return w.cw.w.(*bufio.Writer).Flush()
		writer.go#L351: 			compCount: &countWriter{w: w.cw},
		writer.go#L363: 		fw.rawCount = &countWriter{w: fw.comp}
		writer.go#L503: 	w     io.Writer
		writer.go#L508: 	n, err := w.w.Write(p)