Lines Matching defs:sect

308 find_lowest_section (bfd *abfd, asection *sect, void *obj)
312 if (0 == (bfd_get_section_flags (abfd, sect) & SEC_LOAD))
315 *lowest = sect; /* First loadable section */
316 else if (bfd_section_vma (abfd, *lowest) > bfd_section_vma (abfd, sect))
317 *lowest = sect; /* A lower loadable section */
318 else if (bfd_section_vma (abfd, *lowest) == bfd_section_vma (abfd, sect)
320 <= bfd_section_size (abfd, sect)))
321 *lowest = sect;
390 asection *sect;
393 sect = bfd_get_section_by_name (objfile->obfd, ".text");
394 if (sect)
395 objfile->sect_index_text = sect->index;
397 sect = bfd_get_section_by_name (objfile->obfd, ".data");
398 if (sect)
399 objfile->sect_index_data = sect->index;
401 sect = bfd_get_section_by_name (objfile->obfd, ".bss");
402 if (sect)
403 objfile->sect_index_bss = sect->index;
405 sect = bfd_get_section_by_name (objfile->obfd, ".rodata");
406 if (sect)
407 objfile->sect_index_rodata = sect->index;
580 asection *sect;
619 sect = bfd_get_section_by_name (objfile->obfd,
621 if (sect)
624 -= bfd_section_vma (objfile->obfd, sect);
627 addrs->other[i].sectindex = sect->index ;
985 asection *sect;
992 sect = bfd_get_section_by_name (objfile->obfd, ".gnu_debuglink");
994 if (sect == NULL)
997 debuglink_size = bfd_section_size (objfile->obfd, sect);
1000 bfd_get_section_contents (objfile->obfd, sect, contents,
1042 asection *sect;
1275 asection *sect = bfd_get_section_by_name (objfile->obfd, section_name);
1276 if (sect)
1277 return sect->index;
2768 overlay_is_mapped(sect): true if overlay is marked as mapped
2769 section_is_overlay(sect): true if section's VMA != LMA
2813 struct obj_section *sect;
2815 ALL_OBJSECTIONS (objfile, sect)
2816 if (section_is_overlay (sect->the_bfd_section))
2817 sect->ovly_mapped = -1;