Home
last modified time | relevance | path

Searched refs:module_addr (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DLocalDebugDelegate.cpp49 lldb::addr_t module_addr) { in OnLoadDll() argument
51 process->OnLoadDll(module_spec, module_addr); in OnLoadDll()
54 void LocalDebugDelegate::OnUnloadDll(lldb::addr_t module_addr) { in OnUnloadDll() argument
56 process->OnUnloadDll(module_addr); in OnUnloadDll()
H A DNativeProcessWindows.h105 lldb::addr_t module_addr) override;
106 void OnUnloadDll(lldb::addr_t module_addr) override;
167 lldb::addr_t module_addr) override { in OnLoadDll() argument
168 m_process.OnLoadDll(module_spec, module_addr); in OnLoadDll()
171 void OnUnloadDll(lldb::addr_t module_addr) override { in OnUnloadDll() argument
172 m_process.OnUnloadDll(module_addr); in OnUnloadDll()
H A DIDebugDelegate.h36 lldb::addr_t module_addr) = 0;
37 virtual void OnUnloadDll(lldb::addr_t module_addr) = 0;
H A DLocalDebugDelegate.h52 lldb::addr_t module_addr) override;
53 void OnUnloadDll(lldb::addr_t module_addr) override;
H A DProcessDebugger.h60 lldb::addr_t module_addr);
61 virtual void OnUnloadDll(lldb::addr_t module_addr);
H A DProcessWindows.h93 lldb::addr_t module_addr) override;
94 void OnUnloadDll(lldb::addr_t module_addr) override;
H A DProcessWindows.cpp801 lldb::addr_t module_addr) { in OnLoadDll() argument
803 dyld->OnLoadModule(nullptr, module_spec, module_addr); in OnLoadDll()
806 void ProcessWindows::OnUnloadDll(lldb::addr_t module_addr) { in OnUnloadDll() argument
808 dyld->OnUnloadModule(module_addr); in OnUnloadDll()
H A DProcessDebugger.cpp525 lldb::addr_t module_addr) { in OnLoadDll() argument
529 void ProcessDebugger::OnUnloadDll(lldb::addr_t module_addr) { in OnUnloadDll() argument
H A DNativeProcessWindows.cpp594 lldb::addr_t module_addr) { in OnLoadDll() argument
600 void NativeProcessWindows::OnUnloadDll(lldb::addr_t module_addr) { in OnUnloadDll() argument
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp64 lldb::addr_t module_addr) { in OnLoadModule() argument
75 m_loaded_modules[module_sp] = module_addr; in OnLoadModule()
76 UpdateLoadedSectionsCommon(module_sp, module_addr, false); in OnLoadModule()
82 void DynamicLoaderWindowsDYLD::OnUnloadModule(lldb::addr_t module_addr) { in OnUnloadModule() argument
84 if (!m_process->GetTarget().ResolveLoadAddress(module_addr, resolved_addr)) in OnUnloadModule()
H A DDynamicLoaderWindowsDYLD.h33 lldb::addr_t module_addr);
34 void OnUnloadModule(lldb::addr_t module_addr);