Lines Matching refs:section

731     memset (&((struct section_hash_entry *) entry)->section, 0,  in bfd_section_hash_newfunc()
754 newsect->symbol->section = newsect; in _bfd_generic_new_section_hook()
838 return &sh->section; in bfd_get_section_by_name()
884 if ((*operation) (abfd, &sh->section, user_storage)) in bfd_get_section_by_name_if()
885 return &sh->section; in bfd_get_section_by_name_if()
992 newsect = &sh->section; in bfd_make_section_old_way()
1047 newsect = &sh->section; in bfd_make_section_anyway_with_flags()
1062 newsect = &new_sh->section; in bfd_make_section_anyway_with_flags()
1132 newsect = &sh->section; in bfd_make_section_with_flags()
1186 sec_ptr section, in bfd_set_section_flags() argument
1189 section->flags = flags; in bfd_set_section_flags()
1332 sec_ptr section, in bfd_set_section_contents() argument
1339 if (!(bfd_get_section_flags (abfd, section) & SEC_HAS_CONTENTS)) in bfd_set_section_contents()
1345 sz = section->size; in bfd_set_section_contents()
1362 if (section->contents in bfd_set_section_contents()
1363 && location != section->contents + offset) in bfd_set_section_contents()
1364 memcpy (section->contents + offset, location, (size_t) count); in bfd_set_section_contents()
1367 (abfd, section, location, offset, count))) in bfd_set_section_contents()
1400 sec_ptr section, in bfd_get_section_contents() argument
1407 if (section->flags & SEC_CONSTRUCTOR) in bfd_get_section_contents()
1413 sz = section->rawsize ? section->rawsize : section->size; in bfd_get_section_contents()
1427 if ((section->flags & SEC_HAS_CONTENTS) == 0) in bfd_get_section_contents()
1433 if ((section->flags & SEC_IN_MEMORY) != 0) in bfd_get_section_contents()
1435 memcpy (location, section->contents + offset, (size_t) count); in bfd_get_section_contents()
1440 (abfd, section, location, offset, count)); in bfd_get_section_contents()