Lines Matching full:abfd
75 asection * create_section(bfd * abfd, char const * section_name,
81 section = bfd_make_section(abfd, section_name);
86 if (bfd_set_section_vma(abfd, section, vma) == FALSE) {
90 if (bfd_set_section_size(abfd, section, size) == FALSE) {
94 if (bfd_set_section_flags(abfd, section, flags) == FALSE) {
133 int fill_section_content(bfd * abfd, asection * section,
136 if (bfd_set_section_contents(abfd, section, b, offset, sz) == FALSE) {
252 bfd * abfd;
254 abfd = bfd_openw(filename, dump_bfd_target_name);
255 if (!abfd) {
259 if (bfd_set_format(abfd, bfd_object) == FALSE) {
263 if (bfd_set_arch_mach(abfd, dump_bfd_arch, dump_bfd_mach) == FALSE) {
267 return abfd;
269 bfd_close(abfd);