func bufio.NewReader
38 uses
bufio (current package)
bufio.go#L62: func NewReader(rd io.Reader) *Reader {
archive/zip
reader.go#L108: buf := bufio.NewReader(rs)
compress/bzip2
bit_reader.go#L28: byter = bufio.NewReader(r)
compress/flate
inflate.go#L753: return bufio.NewReader(r)
compress/gzip
gunzip.go#L111: z.r = bufio.NewReader(r)
compress/zlib
reader.go#L134: z.r = bufio.NewReader(r)
crypto/rand
rand_unix.go#L74: r.f = bufio.NewReader(hideAgainReader{f})
encoding/gob
decoder.go#L46: r = bufio.NewReader(r)
encoding/xml
xml.go#L377: d.r = bufio.NewReader(r)
github.com/go-git/go-git/v5/internal/revision
scanner.go#L55: return &scanner{r: bufio.NewReader(r)}
github.com/go-git/go-git/v5/plumbing/format/idxfile
decoder.go#L32: return &Decoder{bufio.NewReader(r)}
github.com/go-git/go-git/v5/plumbing/format/index
decoder.go#L56: extReader: bufio.NewReader(nil),
github.com/go-git/go-git/v5/plumbing/format/packfile
scanner.go#L404: rbuf: bufio.NewReader(nil),
github.com/go-git/go-git/v5/plumbing/object
common.go#L10: return bufio.NewReader(nil)
github.com/go-git/go-git/v5/plumbing/protocol/packp
uppackresp.go#L56: buf := bufio.NewReader(reader)
github.com/go-git/go-git/v5/plumbing/transport/file
client.go#L45: stdoutBuf := bufio.NewReader(stdout)
github.com/go-git/go-git/v5/storage/filesystem
index.go#L51: d := index.NewDecoder(bufio.NewReader(f))
github.com/go-git/go-git/v5/utils/binary
read.go#L157: reader := bufio.NewReader(r)
github.com/go-git/go-git/v5/utils/ioutil
common.go#L28: pr = bufio.NewReader(r)
github.com/go-redis/redis/v8/internal/proto
reader.go#L40: rd: bufio.NewReader(rd),
github.com/lib/pq
conn.go#L319: cn.buf = bufio.NewReader(cn.c)
github.com/prometheus/common/expfmt
text_parse.go#L124: p.buf = bufio.NewReader(in)
go/build
read.go#L33: b: bufio.NewReader(r),
golang.org/x/crypto/openpgp/packet
packet.go#L338: bufr = bufio.NewReader(r)
golang.org/x/crypto/ssh
transport.go#L199: bufReader: bufio.NewReader(rwc),
golang.org/x/net/http2
transport.go#L669: cc.br = bufio.NewReader(c)
google.golang.org/grpc
proxy.go#L101: r := bufio.NewReader(conn)
image
format.go#L55: return bufio.NewReader(r)
mime/quotedprintable
reader.go#L26: br: bufio.NewReader(r),
net/http
h2_bundle.go#L7172: cc.br = bufio.NewReader(c)
server.go#L845: return bufio.NewReader(r)
transport.go#L1698: br := bufio.NewReader(conn)
net/http/httptest
httptest.go#L44: req, err := http.ReadRequest(bufio.NewReader(strings.NewReader(method + " " + target + " HTTP/1.0\r\n\r\n")))
net/http/httputil
dump.go#L131: req, err := http.ReadRequest(bufio.NewReader(pr))
persist.go#L56: r = bufio.NewReader(c)
persist.go#L250: r = bufio.NewReader(c)
net/http/internal
chunked.go#L32: br = bufio.NewReader(r)
net/textproto
textproto.go#L68: Reader: Reader{R: bufio.NewReader(conn)},
![]() |
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. |