Lines Matching refs:section
37 for i, section := range f.File.Sections {
38 ret[i] = section.SectionHeader
74 for _, section := range elfFile.Sections() {
76 Name: section.Name,
77 Addr: section.Addr,
78 Offset: section.Offset,
79 Size: section.Size,
96 section := file.Sections[symbol.Section]
109 if symbol.Value < section.Addr {
112 addr = symbol.Value - section.Addr
113 if addr+symbol.Size > section.Size {
124 Section: section,
146 for _, section := range elfFile.Sections {
147 fmt.Printf("\t\t%#v,\n", section.SectionHeader)