Searched defs:SectionReader (Results 1 – 5 of 5) sorted by relevance
11 type SectionReader struct { struct12 X int15 func SR(*SectionReader) {}
501 type SectionReader struct { struct502 r ReaderAt // constant after creation503 base int64 // constant after creation504 off int64505 limit int64 // constant after creation506 n int64 // constant after creation member509 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 }[all …]
16 io.SectionReader anonMember
118 func elfFromAr(member *io.SectionReader) (io.ReadSeeker, error) {
297 *io.SectionReader anonMember