Home | History | Annotate | Download | only in pe

Lines Matching defs:Section

14 // SectionHeader32 represents real PE COFF section header.
28 // fullName finds real name of section sh. Normally name is stored
45 // Each section contains its own relocation list.
58 return nil, fmt.Errorf("fail to seek to %q section relocations: %v", sh.Name, err)
63 return nil, fmt.Errorf("fail to read section relocations: %v", err)
83 // Section provides access to PE COFF section.
84 type Section struct {
98 // Data reads and returns the contents of the PE section s.
99 func (s *Section) Data() ([]byte, error) {
108 // Open returns a new ReadSeeker reading the PE section s.
109 func (s *Section) Open() io.ReadSeeker {