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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DJITLoaderList.cpp1 //===-- JITLoaderList.cpp ---------------------------------------*- C++ -*-===//
10 #include "lldb/Target/JITLoaderList.h"
16 JITLoaderList::JITLoaderList() : m_jit_loaders_vec(), m_jit_loaders_mutex() {} function in class:JITLoaderList
18 JITLoaderList::~JITLoaderList() {}
20 void JITLoaderList::Append(const JITLoaderSP &jit_loader_sp) {
25 void JITLoaderList::Remove(const JITLoaderSP &jit_loader_sp) {
32 size_t JITLoaderList::GetSize() const { return m_jit_loaders_vec.size(); }
34 JITLoaderSP JITLoaderList
[all...]
H A DJITLoader.cpp11 #include "lldb/Target/JITLoaderList.h"
18 void JITLoader::LoadPlugins(Process *process, JITLoaderList &list) {
H A DProcess.cpp44 #include "lldb/Target/JITLoaderList.h"
2644 JITLoaderList &Process::GetJITLoaders() {
2646 m_jit_loaders_up.reset(new JITLoaderList());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DJITLoaderList.h1 //===-- JITLoaderList.h -----------------------------------------*- C++ -*-===//
19 /// \class JITLoaderList JITLoaderList.h "lldb/Target/JITLoaderList.h"
22 class JITLoaderList { class in namespace:lldb_private
24 JITLoaderList();
25 ~JITLoaderList();
H A DJITLoader.h15 #include "lldb/Target/JITLoaderList.h"
38 static void LoadPlugins(Process *process, lldb_private::JITLoaderList &list);
H A DProcess.h688 virtual JITLoaderList &GetJITLoaders();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h105 JITLoaderList &GetJITLoaders() override;
H A DProcessMinidump.cpp24 #include "lldb/Target/JITLoaderList.h"
552 JITLoaderList &ProcessMinidump::GetJITLoaders() {
554 m_jit_loaders_up = std::make_unique<JITLoaderList>();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h118 class JITLoaderList;
347 typedef std::unique_ptr<lldb_private::JITLoaderList> JITLoaderListUP;
/freebsd-11-stable/lib/clang/liblldb/
H A DMakefile548 SRCS+= Target/JITLoaderList.cpp

Completed in 205 milliseconds