Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadCollection.cpp20 ThreadCollection::ThreadCollection() : m_threads(), m_mutex() {} in ThreadCollection() function in ThreadCollection
22 ThreadCollection::ThreadCollection(collection threads) in ThreadCollection() function in ThreadCollection
25 void ThreadCollection::AddThread(const ThreadSP &thread_sp) { in AddThread()
30 void ThreadCollection::AddThreadSortedByIndexID(const ThreadSP &thread_sp) { in AddThreadSortedByIndexID()
46 void ThreadCollection::InsertThread(const lldb::ThreadSP &thread_sp, in InsertThread()
55 uint32_t ThreadCollection::GetSize() { in GetSize()
60 ThreadSP ThreadCollection::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
H A DInstrumentationRuntime.cpp75 return ThreadCollectionSP(new ThreadCollection()); in GetBacktracesFromExtendedStopInfo()
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.cpp5948 threads.reset(new ThreadCollection(memory_history->GetHistoryThreads(addr))); in GetHistoryThreads()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadCollection.h21 class ThreadCollection {
28 ThreadCollection();
30 ThreadCollection(collection threads);
32 virtual ~ThreadCollection() {} in ~ThreadCollection()
H A DThreadList.h27 class ThreadList : public ThreadCollection {
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBThreadCollection.h35 lldb_private::ThreadCollection *get() const;
37 lldb_private::ThreadCollection *operator->() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBThreadCollection.cpp38 lldb_private::ThreadCollection *SBThreadCollection::get() const { in get()
42 lldb_private::ThreadCollection *SBThreadCollection::operator->() const { in operator ->()
H A DSBThread.cpp294 threads.reset(new ThreadCollection()); in GetStopReasonExtendedBacktraces()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DMainThreadCheckerRuntime.cpp242 threads.reset(new ThreadCollection()); in GetBacktracesFromExtendedStopInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DUBSanRuntime.cpp307 threads.reset(new ThreadCollection()); in GetBacktracesFromExtendedStopInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h253 class ThreadCollection; variable
463 typedef std::shared_ptr<lldb_private::ThreadCollection> ThreadCollectionSP;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DTSanRuntime.cpp1054 threads.reset(new ThreadCollection()); in GetBacktracesFromExtendedStopInfo()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile554 SRCS+= Target/ThreadCollection.cpp