Home
last modified time | relevance | path

Searched refs:ThreadCollection (Results 1 – 13 of 13) sorted by relevance

/freebsd-src/contrib/llvm-project/lldb/source/Target/
H A DThreadCollection.cpp19 ThreadCollection::ThreadCollection() : m_threads(), m_mutex() {} in ThreadCollection() function in ThreadCollection
21 ThreadCollection::ThreadCollection(collection threads) in ThreadCollection() function in ThreadCollection
24 void ThreadCollection::AddThread(const ThreadSP &thread_sp) { in AddThread()
29 void ThreadCollection::AddThreadSortedByIndexID(const ThreadSP &thread_sp) { in AddThreadSortedByIndexID()
45 void ThreadCollection::InsertThread(const lldb::ThreadSP &thread_sp, in InsertThread()
54 uint32_t ThreadCollection::GetSize() { in GetSize()
59 ThreadSP ThreadCollection::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
H A DInstrumentationRuntime.cpp76 return ThreadCollectionSP(new ThreadCollection());
H A DThreadList.cpp27 : ThreadCollection(), m_process(process), m_stop_id(0), in ThreadList()
31 : ThreadCollection(), m_process(rhs.m_process), m_stop_id(rhs.m_stop_id), in ThreadList()
H A DProcess.cpp6099 threads = std::make_shared<ThreadCollection>( in MapSupportedStructuredDataPlugins()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadCollection.h20 class ThreadCollection {
27 ThreadCollection();
29 ThreadCollection(collection threads);
31 virtual ~ThreadCollection() = default;
H A DThreadList.h16 #include "lldb/Target/ThreadCollection.h"
25 // functionality is ThreadCollection.
26 class ThreadList : public ThreadCollection {
/freebsd-src/contrib/llvm-project/lldb/include/lldb/API/
H A DSBThreadCollection.h36 lldb_private::ThreadCollection *get() const;
38 lldb_private::ThreadCollection *operator->() const;
/freebsd-src/contrib/llvm-project/lldb/source/API/
H A DSBThreadCollection.cpp42 lldb_private::ThreadCollection *SBThreadCollection::get() const { in get()
46 lldb_private::ThreadCollection *SBThreadCollection::operator->() const { in operator ->()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp244 threads = std::make_shared<ThreadCollection>(); in GetBacktracesFromExtendedStopInfo()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h237 class ThreadCollection;
447 typedef std::shared_ptr<lldb_private::ThreadCollection> ThreadCollectionSP;
233 class ThreadCollection; global() variable
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp304 threads = std::make_shared<ThreadCollection>(); in GetBacktracesFromExtendedStopInfo()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp1057 ThreadCollectionSP threads = std::make_shared<ThreadCollection>(); in GetBacktracesFromExtendedStopInfo()
/freebsd-src/lib/clang/liblldb/
H A DMakefile665 SRCS+= Target/ThreadCollection.cpp