Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBModuleSpec.cpp100 const char *SBModuleSpec::GetObjectName() { in GetObjectName() function in SBModuleSpec
101 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBModuleSpec, GetObjectName); in GetObjectName()
103 return m_opaque_up->GetObjectName().GetCString(); in GetObjectName()
109 m_opaque_up->GetObjectName().SetCString(name); in SetObjectName()
269 LLDB_REGISTER_METHOD(const char *, SBModuleSpec, GetObjectName, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/Core/
DModuleSpec.h109 ConstString &GetObjectName() { return m_object_name; } in GetObjectName() function
111 ConstString GetObjectName() const { return m_object_name; } in GetObjectName() function
237 if (match_module_spec.GetObjectName() && in Matches()
238 match_module_spec.GetObjectName() != GetObjectName()) in Matches()
DModule.h544 ConstString GetObjectName() const;
/external/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
DObjectContainerBSDArchive.cpp292 ConstString object_name(module_sp->GetObjectName()); in CreateInstance()
426 if (module_sp->GetObjectName() && m_archive_sp) { in GetObjectFile()
428 module_sp->GetObjectName(), module_sp->GetObjectModificationTime()); in GetObjectFile()
491 spec.GetObjectName() = object->ar_name; in GetModuleSpecifications()
/external/llvm-project/lldb/source/Core/
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()
221 if (matching_module_spec.GetObjectName()) in Module()
222 m_object_name = matching_module_spec.GetObjectName(); in Module()
224 m_object_name = module_spec.GetObjectName(); in Module()
1241 ConstString Module::GetObjectName() const { return m_object_name; } in GetObjectName() function in Module
1604 ConstString object_name = module_ref.GetObjectName(); in MatchesModuleSpec()
1606 if (object_name != GetObjectName()) in MatchesModuleSpec()
/external/llvm-project/lldb/bindings/interface/
DSBModuleSpec.i71 GetObjectName ();
/external/llvm-project/lldb/include/lldb/API/
DSBModuleSpec.h66 const char *GetObjectName();
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
DDynamicLoaderHexagonDYLD.cpp608 mod->GetObjectName().AsCString(""), link_map, tp, modid, tls_block); in GetThreadLocalData()
/external/llvm-project/lldb/source/Symbol/
DObjectFile.cpp55 if (file_exists && module_sp->GetObjectName()) { in FindPlugin()
DSymtab.cpp81 object_name = m_objfile->GetModule()->GetObjectName().GetCString(); in Dump()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp700 module_sp->GetObjectName().AsCString(""), link_map, tp, in GetThreadLocalData()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderDarwin.cpp666 module_spec.GetObjectName() = commpage_dbstr; in AddModulesUsingImageInfos()
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp3244 const char *object_name = module->GetObjectName().GetCString(); in PrintModule()