Home
last modified time | relevance | path

Searched refs:JITLoaderList (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DJITLoaderList.cpp17 JITLoaderList::JITLoaderList() : m_jit_loaders_vec(), m_jit_loaders_mutex() {} in JITLoaderList() function in JITLoaderList
19 JITLoaderList::~JITLoaderList() {} in ~JITLoaderList()
21 void JITLoaderList::Append(const JITLoaderSP &jit_loader_sp) { in Append()
26 void JITLoaderList::Remove(const JITLoaderSP &jit_loader_sp) { in Remove()
33 size_t JITLoaderList::GetSize() const { return m_jit_loaders_vec.size(); } in GetSize()
35 JITLoaderSP JITLoaderList::GetLoaderAtIndex(size_t idx) { in GetLoaderAtIndex()
40 void JITLoaderList::DidLaunch() { in DidLaunch()
46 void JITLoaderList::DidAttach() { in DidAttach()
52 void JITLoaderList::ModulesDidLoad(ModuleList &module_list) { in ModulesDidLoad()
H A DJITLoader.cpp19 void JITLoader::LoadPlugins(Process *process, JITLoaderList &list) { in LoadPlugins()
H A DProcess.cpp2886 JITLoaderList &Process::GetJITLoaders() { in GetJITLoaders()
2888 m_jit_loaders_ap.reset(new JITLoaderList()); in GetJITLoaders()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DJITLoaderList.h25 class JITLoaderList {
27 JITLoaderList();
28 ~JITLoaderList();
H A DJITLoader.h43 static void LoadPlugins(Process *process, lldb_private::JITLoaderList &list);
H A DProcess.h892 virtual JITLoaderList &GetJITLoaders();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h106 JITLoaderList &GetJITLoaders() override;
H A DProcessMinidump.cpp412 JITLoaderList &ProcessMinidump::GetJITLoaders() { in GetJITLoaders()
414 m_jit_loaders_ap = llvm::make_unique<JITLoaderList>(); in GetJITLoaders()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h124 class JITLoaderList; variable
365 typedef std::unique_ptr<lldb_private::JITLoaderList> JITLoaderListUP;
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile525 SRCS+= Target/JITLoaderList.cpp