type bytes.Reader
31 uses
bytes (current package)
reader.go#L18: type Reader struct {
reader.go#L26: func (r *Reader) Len() int {
reader.go#L37: func (r *Reader) Size() int64 { return int64(len(r.s)) }
reader.go#L40: func (r *Reader) Read(b []byte) (n int, err error) {
reader.go#L51: func (r *Reader) ReadAt(b []byte, off int64) (n int, err error) {
reader.go#L67: func (r *Reader) ReadByte() (byte, error) {
reader.go#L78: func (r *Reader) UnreadByte() error {
reader.go#L88: func (r *Reader) ReadRune() (ch rune, size int, err error) {
reader.go#L104: func (r *Reader) UnreadRune() error {
reader.go#L117: func (r *Reader) Seek(offset int64, whence int) (int64, error) {
reader.go#L138: func (r *Reader) WriteTo(w io.Writer) (n int64, err error) {
reader.go#L157: func (r *Reader) Reset(b []byte) { *r = Reader{b, 0, -1} }
reader.go#L160: func NewReader(b []byte) *Reader { return &Reader{b, 0, -1} }
crypto/tls
conn.go#L97: input bytes.Reader // application data waiting to be read, from rawInput.Next
github.com/aws/aws-sdk-go-v2/service/s3
deserializers.go#L12445: func awsRestxml_deserializeErrorBucketAlreadyExists(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12450: func awsRestxml_deserializeErrorBucketAlreadyOwnedByYou(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12455: func awsRestxml_deserializeErrorInvalidObjectState(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12488: func awsRestxml_deserializeErrorNoSuchBucket(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12493: func awsRestxml_deserializeErrorNoSuchKey(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12498: func awsRestxml_deserializeErrorNoSuchUpload(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12503: func awsRestxml_deserializeErrorNotFound(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12508: func awsRestxml_deserializeErrorObjectAlreadyInActiveTierError(response *smithyhttp.Response, errorBody *bytes.Reader) error {
deserializers.go#L12513: func awsRestxml_deserializeErrorObjectNotInActiveTierError(response *smithyhttp.Response, errorBody *bytes.Reader) error {
github.com/go-pg/pg/v10/types
hex.go#L64: var rd bytes.Reader
golang.org/x/tools/internal/gcimporter
iimport.go#L28: *bytes.Reader
iimport.go#L469: declReader bytes.Reader
net/http
request.go#L899: case *bytes.Reader:
transfer.go#L1089: case *bytes.Reader, *bytes.Buffer, *strings.Reader:
net/http/httptest
httptest.go#L58: case *bytes.Reader: