Home | History | Annotate | Download | only in objfile

Lines Matching full:sect

57 		if s.Sect == 0 {
59 } else if int(s.Sect) <= len(f.macho.Sections) {
60 sect := f.macho.Sections[s.Sect-1]
61 switch sect.Seg {
67 switch sect.Seg + " " + sect.Name {
81 if sect := f.macho.Section("__text"); sect != nil {
82 textStart = sect.Addr
84 if sect := f.macho.Section("__gosymtab"); sect != nil {
85 if symtab, err = sect.Data(); err != nil {
89 if sect := f.macho.Section("__gopclntab"); sect != nil {
90 if pclntab, err = sect.Data(); err != nil {
98 sect := f.macho.Section("__text")
99 if sect == nil {
102 textStart = sect.Addr
103 text, err = sect.Data()