Lines Matching refs:newsect
1182 NAME (aout, new_section_hook) (bfd *abfd, asection *newsect) in NAME()
1185 newsect->alignment_power = bfd_get_arch_info(abfd)->section_align_power; in NAME()
1190 && !strcmp (newsect->name, ".text")) in NAME()
1192 obj_textsec(abfd)= newsect; in NAME()
1193 newsect->target_index = N_TEXT; in NAME()
1196 && !strcmp (newsect->name, ".data")) in NAME()
1198 obj_datasec (abfd) = newsect; in NAME()
1199 newsect->target_index = N_DATA; in NAME()
1202 && !strcmp (newsect->name, ".bss")) in NAME()
1204 obj_bsssec (abfd) = newsect; in NAME()
1205 newsect->target_index = N_BSS; in NAME()
1210 return _bfd_generic_new_section_hook (abfd, newsect); in NAME()