Searched refs:DynamicLoaderPOSIXDYLD (Results 1 – 4 of 4) sorted by relevance
32 LLDB_PLUGIN_DEFINE_ADV(DynamicLoaderPOSIXDYLD, DynamicLoaderPosixDYLD) in LLDB_PLUGIN_DEFINE_ADV() argument34 void DynamicLoaderPOSIXDYLD::Initialize() { in LLDB_PLUGIN_DEFINE_ADV()39 void DynamicLoaderPOSIXDYLD::Terminate() {} in Terminate()41 lldb_private::ConstString DynamicLoaderPOSIXDYLD::GetPluginName() { in GetPluginName()45 lldb_private::ConstString DynamicLoaderPOSIXDYLD::GetPluginNameStatic() { in GetPluginNameStatic()50 const char *DynamicLoaderPOSIXDYLD::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()55 uint32_t DynamicLoaderPOSIXDYLD::GetPluginVersion() { return 1; } in GetPluginVersion()57 DynamicLoader *DynamicLoaderPOSIXDYLD::CreateInstance(Process *process, in CreateInstance()70 return new DynamicLoaderPOSIXDYLD(process); in CreateInstance()74 DynamicLoaderPOSIXDYLD::DynamicLoaderPOSIXDYLD(Process *process) in DynamicLoaderPOSIXDYLD() function in DynamicLoaderPOSIXDYLD[all …]
23 class DynamicLoaderPOSIXDYLD : public lldb_private::DynamicLoader {25 DynamicLoaderPOSIXDYLD(lldb_private::Process *process);27 ~DynamicLoaderPOSIXDYLD() override;168 DynamicLoaderPOSIXDYLD(const DynamicLoaderPOSIXDYLD &) = delete;169 const DynamicLoaderPOSIXDYLD &170 operator=(const DynamicLoaderPOSIXDYLD &) = delete;
260 this, DynamicLoaderPOSIXDYLD::GetPluginNameStatic().GetCString())); in GetDynamicLoader()
334 SRCS+= Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp