func bufio.NewWriter

20 uses

	bufio (current package)
		bufio.go#L584: func NewWriter(w io.Writer) *Writer {

	archive/zip
		writer.go#L44: 	return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}}

	encoding/xml
		marshal.go#L142: 	e := &Encoder{printer{Writer: bufio.NewWriter(w)}}

	github.com/go-git/go-git/v5/storage/filesystem
		index.go#L23: 	bw := bufio.NewWriter(f)

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		dotgit.go#L1008: 	w := bufio.NewWriter(tmp)

	github.com/go-redis/redis/v8/internal/pool
		conn.go#L35: 	cn.bw = bufio.NewWriter(netConn)

	github.com/prometheus/common/expfmt
		text_create.go#L47: 			return bufio.NewWriter(ioutil.Discard)

	github.com/yuin/goldmark/renderer
		renderer.go#L159: 		writer = bufio.NewWriter(w)

	golang.org/x/crypto/ssh
		transport.go#L200: 		bufWriter: bufio.NewWriter(rwc),

	golang.org/x/net/html
		render.go#L49: 	buf := bufio.NewWriter(w)

	golang.org/x/net/http2
		transport.go#L668: 	cc.bw = bufio.NewWriter(stickyErrWriter{c, &cc.werr})

	google.golang.org/grpc/internal/binarylog
		sink.go#L145: 	bufW := bufio.NewWriter(o)

	image/jpeg
		writer.go#L584: 		e.w = bufio.NewWriter(w)

	net/http
		h2_bundle.go#L7171: 	cc.bw = bufio.NewWriter(http2stickyErrWriter{c, &cc.werr})
		request.go#L606: 		bw = bufio.NewWriter(w)
		server.go#L321: 	buf = bufio.NewReadWriter(c.bufr, bufio.NewWriter(rwc))

	net/textproto
		textproto.go#L69: 		Writer: Writer{W: bufio.NewWriter(conn)},

	runtime/pprof
		pprof.go#L581: 	b := bufio.NewWriter(w)
		pprof.go#L863: 	b := bufio.NewWriter(w)
		pprof.go#L915: 	b := bufio.NewWriter(w)