Home | History | Annotate | Download | only in libutil++

Lines Matching refs:sect

115 	asection const * sect;
160 for (sect = ibfd.abfd->sections; sect; sect = sect->next) {
161 if (sect->flags & SEC_CODE) {
162 if (filepos_map[sect->name] != 0) {
163 cerr << "Found section \"" << sect->name
169 filepos_map[sect->name] = sect->filepos;
171 if (sect->vma == 0 && strcmp(sect->name, ".text"))
172 filtered_section.push_back(sect);
303 asection const * sect = ibfd.abfd->sections;
305 for (; sect; sect = sect->next) {
306 if (offset >= bfd_vma(sect->filepos) &&
307 (!sect->next || offset < bfd_vma(sect->next->filepos))) {
308 return sect->vma + (offset - sect->filepos);