bufio.Writer.Flush (method)

44 uses

	bufio (current package)
		bufio.go#L600: func (b *Writer) Flush() error {
		bufio.go#L643: 			b.Flush()
		bufio.go#L662: 	if b.Available() <= 0 && b.Flush() != nil {
		bufio.go#L685: 		if b.Flush(); b.err != nil {
		bufio.go#L710: 		b.Flush()
		bufio.go#L738: 			if err1 := b.Flush(); err1 != nil {
		bufio.go#L762: 			err = b.Flush()

	net/http
		h2_bundle.go#L3360: 	err := bw.Flush()
		h2_bundle.go#L6136: 		if err := rws.bw.Flush(); err != nil {
		h2_bundle.go#L7202: 	cc.bw.Flush()
		h2_bundle.go#L7389: 	if err := cc.bw.Flush(); err != nil {
		h2_bundle.go#L7796: 	cc.bw.Flush()
		h2_bundle.go#L7890: 				err = cc.bw.Flush()
		h2_bundle.go#L7932: 	if ferr := cc.bw.Flush(); ferr != nil && err == nil {
		h2_bundle.go#L8662: 		cc.bw.Flush()
		h2_bundle.go#L8688: 		cc.bw.Flush()
		h2_bundle.go#L8724: 			cc.bw.Flush()
		h2_bundle.go#L8774: 			cc.bw.Flush()
		h2_bundle.go#L8891: 	cc.bw.Flush()
		h2_bundle.go#L8961: 	if err := cc.bw.Flush(); err != nil {
		h2_bundle.go#L8995: 	return cc.bw.Flush()
		h2_bundle.go#L9016: 	cc.bw.Flush()
		request.go#L674: 			err = bw.Flush()
		request.go#L690: 		if err := bw.Flush(); err != nil {
		request.go#L706: 		return bw.Flush()
		server.go#L397: 	cw.res.conn.bufw.Flush()
		server.go#L612: 	w.w.Flush()  // get rid of any previous writes
		server.go#L907: 			w.conn.bufw.Flush()
		server.go#L1628: 	w.w.Flush()
		server.go#L1631: 	w.conn.bufw.Flush()
		server.go#L1681: 	w.w.Flush()
		server.go#L1694: 		c.bufw.Flush()
		transfer.go#L1103: 		ferr := bw.Flush()
		transport.go#L2398: 				err = pc.bw.Flush()

	net/http/internal
		chunked.go#L217: 		err = bw.Flush()

	net/textproto
		writer.go#L33: 	return w.W.Flush()
		writer.go#L118: 	return bw.Flush()

	runtime/pprof
		pprof.go#L652: 	return b.Flush()
		pprof.go#L884: 	return b.Flush()
		pprof.go#L937: 	return b.Flush()

	src.elv.sh/pkg/rpc
		client.go#L223: 	return c.encBuf.Flush()
		server.go#L402: 		if c.encBuf.Flush() == nil {
		server.go#L411: 		if c.encBuf.Flush() == nil {
		server.go#L419: 	return c.encBuf.Flush()