Home
last modified time | relevance | path

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

/freebsd/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()); 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.cpp6112 threads = std::make_shared<ThreadCollection>( in GetHistoryThreads()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadCollection.h20 class ThreadCollection {
26 ThreadCollection();
28 ThreadCollection(collection threads);
30 virtual ~ThreadCollection() = default;
H A DThreadList.h26 class ThreadList : public ThreadCollection {
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBThreadCollection.h36 lldb_private::ThreadCollection *get() const;
38 lldb_private::ThreadCollection *operator->() const;
/freebsd/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 ->()
H A DSBSaveCoreOptions.cpp107 std::make_shared<lldb_private::ThreadCollection>( in GetThreadsToSave()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSaveCoreOptions.cpp144 lldb_private::ThreadCollection::collection
146 lldb_private::ThreadCollection::collection thread_collection; in GetThreadsToSave()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSaveCoreOptions.h50 lldb_private::ThreadCollection::collection GetThreadsToSave() const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp244 threads = std::make_shared<ThreadCollection>(); in GetBacktracesFromExtendedStopInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp302 threads = std::make_shared<ThreadCollection>(); in GetBacktracesFromExtendedStopInfo()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h242 class ThreadCollection; variable
457 typedef std::shared_ptr<lldb_private::ThreadCollection> ThreadCollectionSP;
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp1055 ThreadCollectionSP threads = std::make_shared<ThreadCollection>(); in GetBacktracesFromExtendedStopInfo()
/freebsd/lib/clang/liblldb/
H A DMakefile687 SRCS+= Target/ThreadCollection.cpp