• Home
  • Raw
  • Download

Lines Matching refs:DynamicLoaderWindowsDYLD

26 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()
86 void DynamicLoaderWindowsDYLD::OnUnloadModule(lldb::addr_t module_addr) { in OnUnloadModule()
101 lldb::addr_t DynamicLoaderWindowsDYLD::GetLoadAddress(ModuleSP executable) { in GetLoadAddress()
124 void DynamicLoaderWindowsDYLD::DidAttach() { in DidAttach()
154 void DynamicLoaderWindowsDYLD::DidLaunch() { in DidLaunch()
175 Status DynamicLoaderWindowsDYLD::CanLoadImage() { return Status(); } in CanLoadImage()
177 ConstString DynamicLoaderWindowsDYLD::GetPluginName() { in GetPluginName()
181 uint32_t DynamicLoaderWindowsDYLD::GetPluginVersion() { return 1; } in GetPluginVersion()
184 DynamicLoaderWindowsDYLD::GetStepThroughTrampolinePlan(Thread &thread, in GetStepThroughTrampolinePlan()