Lines Matching refs:asect
1255 asection *asect) in bfd_mach_o_get_reloc_upper_bound() argument
1257 return (asect->reloc_count + 1) * sizeof (arelent *); in bfd_mach_o_get_reloc_upper_bound()
1434 bfd_mach_o_canonicalize_reloc (bfd *abfd, asection *asect, in bfd_mach_o_canonicalize_reloc() argument
1441 if (asect->reloc_count == 0) in bfd_mach_o_canonicalize_reloc()
1448 if (asect->relocation == NULL) in bfd_mach_o_canonicalize_reloc()
1450 res = bfd_malloc (asect->reloc_count * sizeof (arelent)); in bfd_mach_o_canonicalize_reloc()
1454 if (bfd_mach_o_canonicalize_relocs (abfd, asect->rel_filepos, in bfd_mach_o_canonicalize_reloc()
1455 asect->reloc_count, res, syms) < 0) in bfd_mach_o_canonicalize_reloc()
1460 asect->relocation = res; in bfd_mach_o_canonicalize_reloc()
1463 res = asect->relocation; in bfd_mach_o_canonicalize_reloc()
1464 for (i = 0; i < asect->reloc_count; i++) in bfd_mach_o_canonicalize_reloc()
5710 asection *asect; in bfd_mach_o_free_cached_info() local
5713 for (asect = abfd->sections; asect != NULL; asect = asect->next) in bfd_mach_o_free_cached_info()
5715 free (asect->relocation); in bfd_mach_o_free_cached_info()
5716 asect->relocation = NULL; in bfd_mach_o_free_cached_info()