type bufio.Writer
50 uses
bufio (current package)
bufio.go#L558: type Writer struct {
bufio.go#L568: func NewWriterSize(w io.Writer, size int) *Writer {
bufio.go#L570: b, ok := w.(*Writer)
bufio.go#L577: return &Writer{
bufio.go#L584: func NewWriter(w io.Writer) *Writer {
bufio.go#L589: func (b *Writer) Size() int { return len(b.buf) }
bufio.go#L593: func (b *Writer) Reset(w io.Writer) {
bufio.go#L600: func (b *Writer) Flush() error {
bufio.go#L624: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L627: func (b *Writer) Buffered() int { return b.n }
bufio.go#L633: func (b *Writer) Write(p []byte) (nn int, err error) {
bufio.go#L658: func (b *Writer) WriteByte(c byte) error {
bufio.go#L672: func (b *Writer) WriteRune(r rune) (size int, err error) {
bufio.go#L703: func (b *Writer) WriteString(s string) (int, error) {
bufio.go#L724: func (b *Writer) ReadFrom(r io.Reader) (n int64, err error) {
bufio.go#L776: *Writer
bufio.go#L780: func NewReadWriter(r *Reader, w *Writer) *ReadWriter {
archive/zip
writer.go#L61: return w.cw.w.(*bufio.Writer).Flush()
writer.go#L205: return w.cw.w.(*bufio.Writer).Flush()
encoding/xml
marshal.go#L304: *bufio.Writer
github.com/go-git/go-git/v5/plumbing/format/packfile
scanner.go#L398: wbuf *bufio.Writer
github.com/go-redis/redis/v8/internal/pool
conn.go#L21: bw *bufio.Writer
github.com/prometheus/common/expfmt
text_create.go#L81: b := bufPool.Get().(*bufio.Writer)
golang.org/x/crypto/ssh
transport.go#L47: bufWriter *bufio.Writer
transport.go#L175: func (s *connectionState) writePacket(w *bufio.Writer, rand io.Reader, packet []byte) error {
golang.org/x/net/http2
http2.go#L246: bw *bufio.Writer // non-nil when data is buffered
http2.go#L276: bw := bufWriterPool.Get().(*bufio.Writer)
server.go#L2361: bw *bufio.Writer // writing to a chunkWriter{this *responseWriterState}
transport.go#L256: bw *bufio.Writer
google.golang.org/grpc/internal/binarylog
sink.go#L99: buf *bufio.Writer // buf is kept for flush.
net/http
h2_bundle.go#L3318: bw *bufio.Writer // non-nil when data is buffered
h2_bundle.go#L3348: bw := http2bufWriterPool.Get().(*bufio.Writer)
h2_bundle.go#L5916: bw *bufio.Writer // writing to a chunkWriter{this *responseWriterState}
h2_bundle.go#L6758: bw *bufio.Writer
request.go#L604: var bw *bufio.Writer
request.go#L673: if bw, ok := w.(*bufio.Writer); ok {
request.go#L689: if bw, ok := w.(*bufio.Writer); ok && tw.FlushHeaders {
server.go#L285: bufw *bufio.Writer
server.go#L438: w *bufio.Writer // buffers output in chunks to chunkWriter
server.go#L853: func newBufioWriterSize(w io.Writer, size int) *bufio.Writer {
server.go#L857: bw := v.(*bufio.Writer)
server.go#L865: func putBufioWriter(bw *bufio.Writer) {
server.go#L1193: func (h extraHeader) Write(w *bufio.Writer) {
server.go#L1512: func writeStatusLine(bw *bufio.Writer, is11 bool, code int, scratch []byte) {
transfer.go#L352: if bw, ok := w.(*bufio.Writer); ok && !t.IsResponse {
transfer.go#L1102: if bw, ok := fw.w.(*bufio.Writer); n > 0 && ok {
transport.go#L1876: bw *bufio.Writer // to conn
net/http/internal
chunked.go#L233: *bufio.Writer
net/textproto
writer.go#L16: W *bufio.Writer
writer.go#L21: func NewWriter(w *bufio.Writer) *Writer {
 |
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. |