func bufio.NewWriter

10 uses

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

	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)

	src.elv.sh/pkg/rpc
		client.go#L193: 	encBuf := bufio.NewWriter(conn)
		server.go#L438: 	buf := bufio.NewWriter(conn)