Lines Matching defs:SectionReader
501 type SectionReader struct { struct
502 r ReaderAt // constant after creation
503 base int64 // constant after creation
504 off int64
505 limit int64 // constant after creation
506 n int64 // constant after creation member
509 func (s *SectionReader) Read(p []byte) (n int, err error) {
524 func (s *SectionReader) Seek(offset int64, whence int) (int64, error) {
542 func (s *SectionReader) ReadAt(p []byte, off int64) (n int, err error) {
559 func (s *SectionReader) Size() int64 { return s.limit - s.base }
565 func (s *SectionReader) Outer() (r ReaderAt, off int64, n int64) {