Home
last modified time | relevance | path

Searched refs:DynamicLoaderWindowsDYLD (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
DDynamicLoaderWindowsDYLD.cpp26 LLDB_PLUGIN_DEFINE(DynamicLoaderWindowsDYLD) in LLDB_PLUGIN_DEFINE() argument
28 DynamicLoaderWindowsDYLD::DynamicLoaderWindowsDYLD(Process *process) in LLDB_PLUGIN_DEFINE()
31 DynamicLoaderWindowsDYLD::~DynamicLoaderWindowsDYLD() {} in ~DynamicLoaderWindowsDYLD()
33 void DynamicLoaderWindowsDYLD::Initialize() { in Initialize()
38 void DynamicLoaderWindowsDYLD::Terminate() {} in Terminate()
40 ConstString DynamicLoaderWindowsDYLD::GetPluginNameStatic() { in GetPluginNameStatic()
45 const char *DynamicLoaderWindowsDYLD::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
50 DynamicLoader *DynamicLoaderWindowsDYLD::CreateInstance(Process *process, in CreateInstance()
61 return new DynamicLoaderWindowsDYLD(process); in CreateInstance()
66 void DynamicLoaderWindowsDYLD::OnLoadModule(lldb::ModuleSP module_sp, in OnLoadModule()
[all …]
DDynamicLoaderWindowsDYLD.h19 class DynamicLoaderWindowsDYLD : public DynamicLoader {
21 DynamicLoaderWindowsDYLD(Process *process);
23 ~DynamicLoaderWindowsDYLD() override;
DCMakeLists.txt2 DynamicLoaderWindowsDYLD.cpp
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.h88 DynamicLoaderWindowsDYLD *GetDynamicLoader() override;
DProcessWindows.cpp611 DynamicLoaderWindowsDYLD *ProcessWindows::GetDynamicLoader() { in GetDynamicLoader()
614 this, DynamicLoaderWindowsDYLD::GetPluginNameStatic().GetCString())); in GetDynamicLoader()
615 return static_cast<DynamicLoaderWindowsDYLD *>(m_dyld_up.get()); in GetDynamicLoader()