LLDB mainline
SBThreadCollection.cpp
Go to the documentation of this file.
1//===-- SBThreadCollection.cpp --------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10#include "lldb/API/SBThread.h"
13
14using namespace lldb;
15using namespace lldb_private;
16
18
20 : m_opaque_sp(rhs.m_opaque_sp) {
21 LLDB_INSTRUMENT_VA(this, rhs);
22}
23
25operator=(const SBThreadCollection &rhs) {
26 LLDB_INSTRUMENT_VA(this, rhs);
27
28 if (this != &rhs)
30 return *this;
31}
32
34 : m_opaque_sp(threads) {}
35
37
39 m_opaque_sp = threads;
40}
41
43 return m_opaque_sp.get();
44}
45
47 return m_opaque_sp.operator->();
48}
49
51 return m_opaque_sp;
52}
53
55 return m_opaque_sp;
56}
57
60 return this->operator bool();
61}
62SBThreadCollection::operator bool() const {
64
65 return m_opaque_sp.get() != nullptr;
66}
67
70
71 if (m_opaque_sp)
72 return m_opaque_sp->GetSize();
73 return 0;
74}
75
77 LLDB_INSTRUMENT_VA(this, idx);
78
79 SBThread thread;
80 if (m_opaque_sp && idx < m_opaque_sp->GetSize())
81 thread = m_opaque_sp->GetThreadAtIndex(idx);
82 return thread;
83}
#define LLDB_INSTRUMENT_VA(...)
lldb_private::ThreadCollection * get() const
lldb::ThreadCollectionSP m_opaque_sp
lldb::SBThread GetThreadAtIndex(size_t idx)
const SBThreadCollection & operator=(const SBThreadCollection &rhs)
void SetOpaque(const lldb::ThreadCollectionSP &threads)
lldb_private::ThreadCollection * operator->() const
lldb::ThreadCollectionSP & operator*()
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::ThreadCollection > ThreadCollectionSP
Definition: lldb-forward.h:440