Home
last modified time | relevance | path

Searched refs:GetObjectName (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBModuleSpec.cpp63 const char *SBModuleSpec::GetObjectName() { in GetObjectName() function in SBModuleSpec
64 return m_opaque_ap->GetObjectName().GetCString(); in GetObjectName()
68 m_opaque_ap->GetObjectName().SetCString(name); in SetObjectName()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModuleSpec.h126 ConstString &GetObjectName() { return m_object_name; } in GetObjectName() function
128 const ConstString &GetObjectName() const { return m_object_name; } in GetObjectName() function
252 if (match_module_spec.GetObjectName() && in Matches()
253 match_module_spec.GetObjectName() != GetObjectName()) in Matches()
H A DModule.h653 const ConstString &GetObjectName() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DModule.cpp144 module_spec.GetObjectName().IsEmpty() ? "" : "(", in Module()
145 module_spec.GetObjectName().IsEmpty() in Module()
147 : module_spec.GetObjectName().AsCString(""), in Module()
148 module_spec.GetObjectName().IsEmpty() ? "" : ")"); in Module()
207 if (matching_module_spec.GetObjectName()) in Module()
208 m_object_name = matching_module_spec.GetObjectName(); in Module()
210 m_object_name = module_spec.GetObjectName(); in Module()
1246 const ConstString &Module::GetObjectName() const { return m_object_name; } in GetObjectName() function in Module
1625 const ConstString &object_name = module_ref.GetObjectName(); in MatchesModuleSpec()
1627 if (object_name != GetObjectName()) in MatchesModuleSpec()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp291 ConstString object_name(module_sp->GetObjectName()); in CreateInstance()
425 if (module_sp->GetObjectName() && m_archive_sp) { in GetObjectFile()
427 module_sp->GetObjectName(), module_sp->GetObjectModificationTime()); in GetObjectFile()
494 spec.GetObjectName() = object->ar_name; in GetModuleSpecifications()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBModuleSpec.h69 const char *GetObjectName();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp609 mod->GetObjectName().AsCString(""), link_map, tp, modid, in GetThreadLocalData()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp701 module_sp->GetObjectName().AsCString(""), link_map, tp, in GetThreadLocalData()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp54 if (file_exists && module_sp->GetObjectName()) { in FindPlugin()
H A DSymtab.cpp82 object_name = m_objfile->GetModule()->GetObjectName().GetCString(); in Dump()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp64 ConstString object_name(oso_module->GetObjectName()); in GetFileRangeMap()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp3312 const char *object_name = module->GetObjectName().GetCString(); in PrintModule()