Home | History | Annotate | Download | only in bfd

Lines Matching defs:build_id

1252 	@var{buildid_out}.  The returned filename and build_id are
1763 struct bfd_build_id *build_id;
1772 if (abfd->build_id && abfd->build_id->size > 0)
1774 return (struct bfd_build_id *) abfd->build_id;
1826 build_id
1827 if (build_id == NULL)
1833 build_id->size = inote.descsz;
1834 memcpy (build_id->data, inote.descdata, inote.descsz);
1835 abfd->build_id = build_id;
1838 return build_id;
1849 set to a pointer to the build_id structure. */
1855 struct bfd_build_id *build_id;
1867 build_id = get_build_id (abfd);
1868 if (build_id == NULL)
1872 name = bfd_malloc (strlen (".build-id/") + build_id->size * 2 + 2 + strlen (".debug"));
1879 d = build_id->data;
1880 s = build_id->size;
1889 *build_id_out = build_id;
1904 struct bfd_build_id *build_id;
1922 build_id = get_build_id (file);
1923 if (build_id == NULL)
1931 result = build_id->size == orig_build_id->size
1932 && memcmp (build_id->data, orig_build_id->data, build_id->size) == 0;
1970 struct bfd_build_id *build_id;
1974 check_build_id_file, &build_id);