Lines Matching full:sect
46 sect := f.elf.Sections[i]
47 switch sect.Flags & (elf.SHF_WRITE | elf.SHF_ALLOC | elf.SHF_EXECINSTR) {
66 if sect := f.elf.Section(".text"); sect != nil {
67 textStart = sect.Addr
69 if sect := f.elf.Section(".gosymtab"); sect != nil {
70 if symtab, err = sect.Data(); err != nil {
74 if sect := f.elf.Section(".gopclntab"); sect != nil {
75 if pclntab, err = sect.Data(); err != nil {
83 sect := f.elf.Section(".text")
84 if sect == nil {
87 textStart = sect.Addr
88 text, err = sect.Data()