type net/http.body

18 uses

	net/http (current package)
		server.go#L1028: 	if body, ok := req.Body.(*body); ok {
		server.go#L1352: 		case *body:
		server.go#L1673: 	body, ok := w.req.Body.(*body)
		server.go#L2038: 	case *body:
		server.go#L2054: 	case *body:
		transfer.go#L559: 			t.Body = &body{src: internal.NewChunkedReader(r), hdr: msg, r: r, closing: t.Close}
		transfer.go#L564: 		t.Body = &body{src: io.LimitReader(r, realLength), closing: t.Close}
		transfer.go#L569: 			t.Body = &body{src: r, closing: t.Close}
		transfer.go#L808: type body struct {
		transfer.go#L828: func (b *body) Read(p []byte) (n int, err error) {
		transfer.go#L838: func (b *body) readLocked(p []byte) (n int, err error) {
		transfer.go#L908: func (b *body) readTrailer() error {
		transfer.go#L963: func (b *body) unreadDataSizeLocked() int64 {
		transfer.go#L970: func (b *body) Close() error {
		transfer.go#L1011: func (b *body) didEarlyClose() bool {
		transfer.go#L1019: func (b *body) bodyRemains() bool {
		transfer.go#L1025: func (b *body) registerOnHitEOF(fn func()) {
		transfer.go#L1034: 	b *body