Home | History | Annotate | Download | only in bfd

Lines Matching refs:sec

603 .#define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
604 .#define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
605 .#define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
607 .#define bfd_is_const_section(SEC) \
608 . ( ((SEC) == bfd_abs_section_ptr) \
609 . || ((SEC) == bfd_und_section_ptr) \
610 . || ((SEC) == bfd_com_section_ptr) \
611 . || ((SEC) == bfd_ind_section_ptr))
703 .#define BFD_FAKE_SECTION(SEC, FLAGS, SYM, NAME, IDX) \
720 . 0, &SEC, 0, \
735 . (struct bfd_symbol *) SYM, &SEC.symbol, \
909 asection *bfd_get_next_section_by_name (bfd *ibfd, asection *sec);
912 Given @var{sec} is a section returned by @code{bfd_get_section_by_name},
920 bfd_get_next_section_by_name (bfd *ibfd, asection *sec)
927 ((char *) sec - offsetof (struct section_hash_entry, section)));
930 name = sec->name;
966 asection *sec = bfd_get_section_by_name (abfd, name);
968 while (sec != NULL && (sec->flags & SEC_LINKER_CREATED) == 0)
969 sec = bfd_get_next_section_by_name (NULL, sec);
970 return sec;
1314 (bfd *abfd, asection *sec, flagword flags);
1317 Set the attributes of the section @var{sec} in the BFD
1343 (bfd *abfd, asection *sec, const char *newname);
1346 Rename section @var{sec} in @var{abfd} to @var{newname}.
1350 bfd_rename_section (bfd *abfd, sec_ptr sec, const char *newname)
1355 ((char *) sec - offsetof (struct section_hash_entry, section));
1442 (bfd *abfd, asection *sec, bfd_size_type val);
1445 Set @var{sec} to the size @var{val}. If the operation is
1637 bfd_malloc_and_get_section (bfd *abfd, sec_ptr sec, bfd_byte **buf)
1640 return bfd_get_full_section_contents (abfd, sec, buf);
1669 bfd_boolean bfd_generic_is_group_section (bfd *, const asection *sec);
1672 Returns TRUE if @var{sec} is a member of a group.
1677 const asection *sec ATTRIBUTE_UNUSED)