Lines Matching refs:DynamicLoaderWindowsDYLD
27 LLDB_PLUGIN_DEFINE(DynamicLoaderWindowsDYLD) in LLDB_PLUGIN_DEFINE() argument
29 DynamicLoaderWindowsDYLD::DynamicLoaderWindowsDYLD(Process *process) in LLDB_PLUGIN_DEFINE()
32 DynamicLoaderWindowsDYLD::~DynamicLoaderWindowsDYLD() = default;
34 void DynamicLoaderWindowsDYLD::Initialize() { in Initialize()
39 void DynamicLoaderWindowsDYLD::Terminate() {} in Terminate()
41 llvm::StringRef DynamicLoaderWindowsDYLD::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
46 DynamicLoader *DynamicLoaderWindowsDYLD::CreateInstance(Process *process, in CreateInstance()
57 return new DynamicLoaderWindowsDYLD(process); in CreateInstance()
62 void DynamicLoaderWindowsDYLD::OnLoadModule(lldb::ModuleSP module_sp, in OnLoadModule()
82 void DynamicLoaderWindowsDYLD::OnUnloadModule(lldb::addr_t module_addr) { in OnUnloadModule()
97 lldb::addr_t DynamicLoaderWindowsDYLD::GetLoadAddress(ModuleSP executable) { in GetLoadAddress()
120 void DynamicLoaderWindowsDYLD::DidAttach() { in DidAttach()
150 void DynamicLoaderWindowsDYLD::DidLaunch() { in DidLaunch()
171 Status DynamicLoaderWindowsDYLD::CanLoadImage() { return Status(); } in CanLoadImage()
174 DynamicLoaderWindowsDYLD::GetStepThroughTrampolinePlan(Thread &thread, in GetStepThroughTrampolinePlan()