Lines Matching refs:SBThreadCollection
17 SBThreadCollection::SBThreadCollection() : m_opaque_sp() {} in SBThreadCollection() function in SBThreadCollection
19 SBThreadCollection::SBThreadCollection(const SBThreadCollection &rhs) in SBThreadCollection() function in SBThreadCollection
22 const SBThreadCollection &SBThreadCollection::
23 operator=(const SBThreadCollection &rhs) { in operator =()
29 SBThreadCollection::SBThreadCollection(const ThreadCollectionSP &threads) in SBThreadCollection() function in SBThreadCollection
32 SBThreadCollection::~SBThreadCollection() {} in ~SBThreadCollection()
34 void SBThreadCollection::SetOpaque(const lldb::ThreadCollectionSP &threads) { in SetOpaque()
38 lldb_private::ThreadCollection *SBThreadCollection::get() const { in get()
42 lldb_private::ThreadCollection *SBThreadCollection::operator->() const { in operator ->()
46 lldb::ThreadCollectionSP &SBThreadCollection::operator*() { in operator *()
50 const lldb::ThreadCollectionSP &SBThreadCollection::operator*() const { in operator *()
54 bool SBThreadCollection::IsValid() const { return m_opaque_sp.get() != NULL; } in IsValid()
56 size_t SBThreadCollection::GetSize() { in GetSize()
62 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex()