Home | History | Annotate | Download | only in bfd

Lines Matching refs:reloc_sec

15557   asection *reloc_sec = elf_section_data (sec)->sreloc;
15559 if (reloc_sec == NULL)
15565 reloc_sec = bfd_get_linker_section (abfd, name);
15567 if (reloc_sec != NULL)
15568 elf_section_data (sec)->sreloc = reloc_sec;
15572 return reloc_sec;
15592 asection * reloc_sec = elf_section_data (sec)->sreloc;
15594 if (reloc_sec == NULL)
15601 reloc_sec = bfd_get_linker_section (dynobj, name);
15603 if (reloc_sec == NULL)
15610 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
15611 if (reloc_sec != NULL)
15617 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
15618 if (!bfd_set_section_alignment (reloc_sec, alignment))
15619 reloc_sec = NULL;
15623 elf_section_data (sec)->sreloc = reloc_sec;
15626 return reloc_sec;