Lines Matching refs:abfd
941 bfd *abfd;
943 abfd = bfd_openr(filename, NULL);
944 if (!abfd)
947 if (!bfd_check_format(abfd, bfd_object)) {
952 if (!abfd->build_id || abfd->build_id->size > size)
955 memcpy(bid->data, abfd->build_id->data, abfd->build_id->size);
956 memset(bid->data + abfd->build_id->size, 0, size - abfd->build_id->size);
957 err = bid->size = abfd->build_id->size;
960 bfd_close(abfd);
1088 bfd *abfd;
1090 abfd = bfd_openr(filename, NULL);
1091 if (!abfd)
1094 if (!bfd_check_format(abfd, bfd_object)) {
1099 section = bfd_get_section_by_name(abfd, ".gnu_debuglink");
1106 if (!bfd_get_section_contents(abfd, section, debuglink, 0,
1113 bfd_close(abfd);