Lines Matching defs:abfd
944 bfd *abfd;
946 abfd = bfd_openr(filename, NULL);
947 if (!abfd)
950 if (!bfd_check_format(abfd, bfd_object)) {
955 if (!abfd->build_id || abfd->build_id->size > size)
958 memcpy(bid->data, abfd->build_id->data, abfd->build_id->size);
959 memset(bid->data + abfd->build_id->size, 0, size - abfd->build_id->size);
960 err = bid->size = abfd->build_id->size;
963 bfd_close(abfd);
1091 bfd *abfd;
1093 abfd = bfd_openr(filename, NULL);
1094 if (!abfd)
1097 if (!bfd_check_format(abfd, bfd_object)) {
1102 section = bfd_get_section_by_name(abfd, ".gnu_debuglink");
1109 if (!bfd_get_section_contents(abfd, section, debuglink, 0,
1116 bfd_close(abfd);