Lines Matching defs:soname
511 set_cbfd_soname_build_id (gdb_bfd_ref_ptr abfd, const char *soname,
515 gdb_assert (soname != nullptr);
524 (*mapptr)[soname] = build_id_to_string (build_id);
527 /* If SONAME had a build-id associated with it in ABFD's registry by a
532 get_cbfd_soname_build_id (gdb_bfd_ref_ptr abfd, const char *soname)
534 if (abfd.get () == nullptr || soname == nullptr)
543 auto it = mapptr->find (lbasename (soname));
1644 /* Read soname from the string table. */
1649 /* Ensure soname is null-terminated before returning a copy. */
1650 char *soname = (char *) dynstr_buf.data () + idx;
1651 if (strnlen (soname, sect_size - idx) == sect_size - idx)
1654 return make_unique_xstrdup (soname);