Home | History | Annotate | Download | only in bfd

Lines Matching refs:build_id

1291 	@var{buildid_out}.  The returned filename and build_id are
1807 struct bfd_build_id *build_id;
1816 if (abfd->build_id && abfd->build_id->size > 0)
1818 return (struct bfd_build_id *) abfd->build_id;
1870 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) + inote.descsz);
1871 if (build_id == NULL)
1877 build_id->size = inote.descsz;
1878 memcpy (build_id->data, inote.descdata, inote.descsz);
1879 abfd->build_id = build_id;
1882 return build_id;
1893 set to a pointer to the build_id structure. */
1899 struct bfd_build_id *build_id;
1911 build_id = get_build_id (abfd);
1912 if (build_id == NULL)
1916 name = bfd_malloc (strlen (".build-id/") + build_id->size * 2 + 2 + strlen (".debug"));
1923 d = build_id->data;
1924 s = build_id->size;
1933 *build_id_out = build_id;
1948 struct bfd_build_id *build_id;
1966 build_id = get_build_id (file);
1967 if (build_id == NULL)
1975 result = build_id->size == orig_build_id->size
1976 && memcmp (build_id->data, orig_build_id->data, build_id->size) == 0;
2014 struct bfd_build_id *build_id;
2018 check_build_id_file, &build_id);