var io.ErrUnexpectedEOF

35 uses

	io (current package)
		io.go#L48: var ErrUnexpectedEOF = errors.New("unexpected EOF")
		io.go#L341: 		err = ErrUnexpectedEOF

	compress/flate
		inflate.go#L691: 		return io.ErrUnexpectedEOF

	compress/gzip
		gunzip.go#L42: 		return io.ErrUnexpectedEOF

	crypto/tls
		conn.go#L633: 		if err == io.ErrUnexpectedEOF && c.rawInput.Len() == 0 {
		conn.go#L812: 		return n, io.ErrUnexpectedEOF

	encoding/base64
		base64.go#L488: 			d.err = io.ErrUnexpectedEOF

	encoding/binary
		varint.go#L137: 				err = io.ErrUnexpectedEOF

	encoding/hex
		hex.go#L218: 				d.err = io.ErrUnexpectedEOF

	encoding/json
		stream.go#L132: 					err = io.ErrUnexpectedEOF

	fmt
		scan.go#L227: 		s.error(io.ErrUnexpectedEOF)
		scan.go#L961: 				err = io.ErrUnexpectedEOF

	internal/poll
		fd_unix.go#L405: 			return nn, io.ErrUnexpectedEOF
		fd_unix.go#L439: 			return nn, io.ErrUnexpectedEOF
		writev.go#L85: 			err = io.ErrUnexpectedEOF

	mime/multipart
		multipart.go#L207: 				p.readErr = io.ErrUnexpectedEOF

	mime/quotedprintable
		reader.go#L45: 		return 0, io.ErrUnexpectedEOF

	net
		parse.go#L59: 		if err == io.EOF || err == io.ErrUnexpectedEOF {

	net/http
		h2_bundle.go#L2808: 		return nil, 0, io.ErrUnexpectedEOF
		h2_bundle.go#L2815: 		return nil, 0, io.ErrUnexpectedEOF
		h2_bundle.go#L4634: 	if err == io.EOF || err == io.ErrUnexpectedEOF || http2isClosedConnError(err) || err == http2errPrefaceTimeout {
		h2_bundle.go#L5327: 		clientGone := err == io.EOF || err == io.ErrUnexpectedEOF || http2isClosedConnError(err)
		h2_bundle.go#L9443: 		err = io.ErrUnexpectedEOF
		h2_bundle.go#L9476: 	if errors.Is(err, io.ErrUnexpectedEOF) {
		h2_bundle.go#L9792: 			err = io.ErrUnexpectedEOF
		h2_bundle.go#L10294: func (http2missingBody) Read([]byte) (int, error) { return 0, io.ErrUnexpectedEOF }
		request.go#L1101: 			err = io.ErrUnexpectedEOF
		response.go#L164: 			err = io.ErrUnexpectedEOF
		response.go#L191: 			err = io.ErrUnexpectedEOF
		transfer.go#L864: 				err = io.ErrUnexpectedEOF

	net/http/internal
		chunked.go#L113: 					cr.err = io.ErrUnexpectedEOF
		chunked.go#L145: 			cr.err = io.ErrUnexpectedEOF
		chunked.go#L161: 			err = io.ErrUnexpectedEOF

	net/textproto
		reader.go#L358: 				err = io.ErrUnexpectedEOF
		reader.go#L463: 				err = io.ErrUnexpectedEOF