Home
last modified time | relevance | path

Searched defs:module_sp (Results 1 – 25 of 115) sorted by relevance

12345

/freebsd-14-stable/contrib/llvm-project/lldb/source/API/
HDSBModule.cpp34 SBModule::SBModule(const lldb::ModuleSP &module_sp) : m_opaque_sp(module_sp) {} in SBModule()
39 ModuleSP module_sp; in SBModule() local
94 ModuleSP module_sp(GetSP()); in IsFileBacked() local
109 ModuleSP module_sp(GetSP()); in GetFileSpec() local
120 ModuleSP module_sp(GetSP()); in GetPlatformFileSpec() local
132 ModuleSP module_sp(GetSP()); in SetPlatformFileSpec() local
145 ModuleSP module_sp(GetSP()); in GetRemoteInstallFileSpec() local
154 ModuleSP module_sp(GetSP()); in SetRemoteInstallFileSpec() local
166 ModuleSP module_sp(GetSP()); in GetUUIDBytes() local
176 ModuleSP module_sp(GetSP()); in GetUUIDString() local
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/source/Core/
HDModuleList.cpp216 void ModuleList::AppendImpl(const ModuleSP &module_sp, bool use_notifier) { in AppendImpl()
247 void ModuleList::Append(const ModuleSP &module_sp, bool notify) { in Append()
252 const ModuleSP &module_sp, in ReplaceEquivalent()
283 for (const ModuleSP &module_sp : m_modules) { in AppendIfNeeded() local
308 bool ModuleList::RemoveImpl(const ModuleSP &module_sp, bool use_notifier) { in RemoveImpl()
327 ModuleSP module_sp(*pos); in RemoveImpl() local
334 bool ModuleList::Remove(const ModuleSP &module_sp, bool notify) { in Remove()
435 ModuleSP module_sp; in GetModuleAtIndexUnlocked() local
451 for (const ModuleSP &module_sp : m_modules) { in FindFunctions() local
462 for (const ModuleSP &module_sp : m_modules) { in FindFunctions() local
[all …]
HDModuleChild.cpp13 ModuleChild::ModuleChild(const lldb::ModuleSP &module_sp) in ModuleChild()
26 void ModuleChild::SetModule(const lldb::ModuleSP &module_sp) { in SetModule()
HDSearchFilter.cpp139 bool SearchFilter::ModulePasses(const ModuleSP &module_sp) { return true; } in ModulePasses()
231 for (ModuleSP module_sp : modules.Modules()) { in SearchInModuleList() local
240 SearchFilter::DoModuleIteration(const lldb::ModuleSP &module_sp, in DoModuleIteration()
261 for (ModuleSP module_sp : m_target_sp->GetImages().Modules()) { in DoModuleIteration() local
289 SearchFilter::DoCUIteration(const ModuleSP &module_sp, in DoCUIteration()
376 const lldb::ModuleSP &module_sp) { in ModulePasses()
397 bool SearchFilterByModule::ModulePasses(const ModuleSP &module_sp) { in ModulePasses()
428 for (ModuleSP module_sp : m_target_sp->GetImages().Modules()) { in Search() local
509 bool SearchFilterByModuleList::ModulePasses(const ModuleSP &module_sp) { in ModulePasses()
542 for (ModuleSP module_sp : m_target_sp->GetImages().Modules()) { in Search() local
[all …]
HDDynamicLoader.cpp85 auto module_sp = std::make_shared<Module>(module_spec); in GetTargetExecutable() local
157 if (ModuleSP module_sp = target.GetImages().FindFirstModule(module_spec)) in FindModuleViaTarget() local
160 if (ModuleSP module_sp = target.GetOrCreateModule(module_spec, false)) in FindModuleViaTarget() local
170 if (ModuleSP module_sp = FindModuleViaTarget(file)) { in LoadModuleAtAddress() local
194 ModuleSP module_sp; in LoadBinaryWithUUIDAndAddress() local
HDAddress.cpp94 ModuleSP module_sp(address.GetModule()); in GetByteOrderAndAddressSize() local
148 ModuleSP module_sp(address.GetModule()); in ReadAddress() local
286 lldb::ModuleSP module_sp; in GetModule() local
450 ModuleSP module_sp = section_sp->GetModule(); in Dump() local
502 ModuleSP module_sp(GetModule()); in Dump() local
710 ModuleSP module_sp(GetModule()); in Dump() local
840 ModuleSP module_sp(section_sp->GetModule()); in CalculateSymbolContext() local
1034 ModuleSP module_sp(GetModule()); in GetAddressClass() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Symbol/
HDSymbolVendor.cpp26 SymbolVendor *SymbolVendor::FindPlugin(const lldb::ModuleSP &module_sp, in FindPlugin()
60 SymbolVendor::SymbolVendor(const lldb::ModuleSP &module_sp) in SymbolVendor()
65 ModuleSP module_sp(GetModule()); in AddSymbolFileRepresentation() local
HDObjectFile.cpp36 CreateObjectFromContainer(const lldb::ModuleSP &module_sp, const FileSpec *file, in CreateObjectFromContainer()
53 ObjectFile::FindPlugin(const lldb::ModuleSP &module_sp, const FileSpec *file, in FindPlugin()
152 ObjectFileSP ObjectFile::FindPlugin(const lldb::ModuleSP &module_sp, in FindPlugin()
190 ModuleSP module_sp = std::make_shared<Module>(file_spec); in IsObjectFile() local
250 ObjectFile::ObjectFile(const lldb::ModuleSP &module_sp, in ObjectFile()
274 ObjectFile::ObjectFile(const lldb::ModuleSP &module_sp, in ObjectFile()
298 ModuleSP module_sp(GetModule()); in SetModulesArchitecture() local
586 ModuleSP module_sp(GetModule()); in ClearSymtab() local
602 ModuleSP module_sp(GetModule()); in GetSectionList() local
737 ModuleSP module_sp(GetModule()); in GetSymtab() local
HDType.cpp1017 ModuleSP module_sp; in IsValid() local
1032 lldb::ModuleSP module_sp; in GetModule() local
1039 ModuleSP module_sp; in GetName() local
1049 ModuleSP module_sp; in GetDisplayTypeName() local
1059 ModuleSP module_sp; in GetPointerType() local
1071 ModuleSP module_sp; in GetPointeeType() local
1083 ModuleSP module_sp; in GetReferenceType() local
1095 ModuleSP module_sp; in GetTypedefedType() local
1107 ModuleSP module_sp; in GetDereferencedType() local
1119 ModuleSP module_sp; in GetUnqualifiedType() local
[all …]
HDObjectContainer.cpp18 ObjectContainer::ObjectContainer(const lldb::ModuleSP &module_sp, in ObjectContainer()
33 ObjectContainerSP ObjectContainer::FindPlugin(const lldb::ModuleSP &module_sp, in FindPlugin()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
HDDynamicLoaderPOSIXDYLD.cpp149 for (auto module_sp : module_list.Modules()) { in DidAttach() local
449 ModuleSP module_sp = in RefreshModules() local
477 ModuleSP module_sp = loaded_modules.FindFirstModule(module_spec); in RefreshModules() local
563 if (ModuleSP module_sp = m_process->ReadModuleFromMemory( in LoadVDSO() local
589 if (ModuleSP module_sp = in LoadInterpreterModule() local
608 if (ModuleSP module_sp = DynamicLoader::LoadModuleAtAddress( in LoadModuleAtAddress() local
626 if (ModuleSP module_sp = DynamicLoader::LoadModuleAtAddress( in LoadModuleAtAddress() local
664 ModuleSP module_sp = in LoadAllCurrentModules() local
743 DynamicLoaderPOSIXDYLD::GetThreadLocalData(const lldb::ModuleSP module_sp, in GetThreadLocalData()
821 lldb::ModuleSP &module_sp) { in ResolveExecutableModule()
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
HDObjectContainerMachOFileset.cpp37 const lldb::ModuleSP &module_sp, lldb::DataBufferSP &data_sp, in ObjectContainerMachOFileset()
44 const lldb::ModuleSP &module_sp, lldb::WritableDataBufferSP data_sp, in ObjectContainerMachOFileset()
51 const lldb::ModuleSP &module_sp, DataBufferSP &data_sp, in CreateInstance()
71 const lldb::ModuleSP &module_sp, lldb::WritableDataBufferSP data_sp, in CreateMemoryInstance()
194 ModuleSP module_sp(GetModule()); in ParseHeader() local
273 ModuleSP module_sp(GetModule()); in GetObjectFile() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Target/
HDSectionLoadList.cpp68 ModuleSP module_sp(section->GetModule()); in SetSectionLoadAddress() local
104 ModuleSP module_sp(section->GetModule()); in SetSectionLoadAddress() local
153 ModuleSP module_sp = section_sp->GetModule(); in SetSectionUnloaded() local
188 ModuleSP module_sp = section_sp->GetModule(); in SetSectionUnloaded() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
HDObjectFileWasm.cpp92 ObjectFileWasm::CreateInstance(const ModuleSP &module_sp, DataBufferSP data_sp, in CreateInstance()
144 ObjectFile *ObjectFileWasm::CreateMemoryInstance(const ModuleSP &module_sp, in CreateMemoryInstance()
231 ObjectFileWasm::ObjectFileWasm(const ModuleSP &module_sp, DataBufferSP data_sp, in ObjectFileWasm()
239 ObjectFileWasm::ObjectFileWasm(const lldb::ModuleSP &module_sp, in ObjectFileWasm()
367 ModuleSP module_sp = GetModule(); in SetLoadAddress() local
435 ModuleSP module_sp(GetModule()); in Dump() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Expression/
HDObjectFileJIT.cpp43 ObjectFile *ObjectFileJIT::CreateInstance(const lldb::ModuleSP &module_sp, in CreateInstance()
54 ObjectFile *ObjectFileJIT::CreateMemoryInstance(const lldb::ModuleSP &module_sp, in CreateMemoryInstance()
71 ObjectFileJIT::ObjectFileJIT(const lldb::ModuleSP &module_sp, in ObjectFileJIT()
118 ModuleSP module_sp(GetModule()); in Dump() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/wasm-DYLD/
HDDynamicLoaderWasmDYLD.cpp71 if (ModuleSP module_sp = DynamicLoader::LoadModuleAtAddress( in LoadModuleAtAddress() local
75 if (ModuleSP module_sp = m_process->ReadModuleFromMemory(file, base_addr)) { in LoadModuleAtAddress() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/
HDInstrumentationRuntimeASanLibsanitizers.cpp62 const lldb::ModuleSP module_sp) { in CheckIfRuntimeIsValid()
93 lldb::ModuleSP module_sp = GetRuntimeModuleSP(); in Activate() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
HDObjectFilePDB.cpp95 ObjectFilePDB::CreateInstance(const ModuleSP &module_sp, DataBufferSP data_sp, in CreateInstance()
105 ObjectFile *ObjectFilePDB::CreateMemoryInstance(const ModuleSP &module_sp, in CreateMemoryInstance()
161 ObjectFilePDB::ObjectFilePDB(const ModuleSP &module_sp, DataBufferSP &data_sp, in ObjectFilePDB()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
HDAppleObjCRuntime.cpp226 ModuleSP module_sp(m_objc_module_wp.lock()); in GetObjCModule() local
313 bool AppleObjCRuntime::AppleIsModuleObjCLibrary(const ModuleSP &module_sp) { in AppleIsModuleObjCLibrary()
332 lldb::ModuleSP module_sp = modules.GetModuleAtIndex(idx); in GetFoundationVersion() local
351 bool AppleObjCRuntime::IsModuleObjCLibrary(const ModuleSP &module_sp) { in IsModuleObjCLibrary()
355 bool AppleObjCRuntime::ReadObjCLibrary(const ModuleSP &module_sp) { in ReadObjCLibrary()
388 for (ModuleSP module_sp : target.GetImages().Modules()) { in GetObjCVersion() local
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
HDObjectFileMinidump.cpp38 const lldb::ModuleSP &module_sp, lldb::DataBufferSP data_sp, in CreateInstance()
45 const lldb::ModuleSP &module_sp, WritableDataBufferSP data_sp, in CreateMemoryInstance()
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/Expression/
HDDWARFExpressionList.h32 DWARFExpressionList(lldb::ModuleSP module_sp, in DWARFExpressionList()
38 DWARFExpressionList(lldb::ModuleSP module_sp, DWARFExpression expr, in DWARFExpressionList()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
HDObjectFileBreakpad.cpp61 const ModuleSP &module_sp, DataBufferSP data_sp, offset_t data_offset, in CreateInstance()
88 const ModuleSP &module_sp, WritableDataBufferSP data_sp, in CreateMemoryInstance()
106 ObjectFileBreakpad::ObjectFileBreakpad(const ModuleSP &module_sp, in ObjectFileBreakpad()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
HDGNUstepObjCRuntime.cpp40 static bool CanModuleBeGNUstepObjCLibrary(const ModuleSP &module_sp, in CanModuleBeGNUstepObjCLibrary()
210 bool GNUstepObjCRuntime::IsModuleObjCLibrary(const ModuleSP &module_sp) { in IsModuleObjCLibrary()
215 bool GNUstepObjCRuntime::ReadObjCLibrary(const ModuleSP &module_sp) { in ReadObjCLibrary()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
HDObjectFileJSON.cpp39 ObjectFileJSON::CreateInstance(const ModuleSP &module_sp, DataBufferSP data_sp, in CreateInstance()
97 ObjectFile *ObjectFileJSON::CreateMemoryInstance(const ModuleSP &module_sp, in CreateMemoryInstance()
148 ObjectFileJSON::ObjectFileJSON(const ModuleSP &module_sp, DataBufferSP &data_sp, in ObjectFileJSON()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
HDDynamicLoaderHexagonDYLD.cpp178 ModuleSP module_sp(new Module(module_spec)); in GetTargetExecutable() local
358 ModuleSP module_sp = in RefreshModules() local
384 ModuleSP module_sp = loaded_modules.FindFirstModule(module_spec); in RefreshModules() local
473 ModuleSP module_sp = in LoadAllCurrentModules() local

12345