Lines Matching refs:soname
91 void add (const char *soname, const char *expected_filename,
144 using either a soname or an address then this map allows us to also
613 optional soname (DT_SONAME .dynamic attribute), and the range of
622 gdb::unique_xmalloc_ptr<char> soname;
626 soname = gdb_bfd_read_elf_soname (actual_filename);
629 m_mapped_file_info.add (soname.get (), filename.c_str (),
1964 SONAME is the DT_SONAME attribute extracted from the .dynamic section of
1987 mapped_file_info::add (const char *soname,
1996 if (soname != nullptr)
1998 /* If we already have an entry with this SONAME then this indicates
2003 library, so poison the entry for this SONAME by setting the entry
2005 auto it = m_soname_to_build_id_map.find (soname);
2009 m_soname_to_build_id_map[soname] = nullptr;
2011 m_soname_to_build_id_map[soname] = build_id;