• Home
  • Raw
  • Download

Lines Matching refs:SBThreadCollection

17 SBThreadCollection::SBThreadCollection() : m_opaque_sp() {  in SBThreadCollection()  function in SBThreadCollection
18 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBThreadCollection); in SBThreadCollection()
21 SBThreadCollection::SBThreadCollection(const SBThreadCollection &rhs) in SBThreadCollection() function in SBThreadCollection
23 LLDB_RECORD_CONSTRUCTOR(SBThreadCollection, in SBThreadCollection()
24 (const lldb::SBThreadCollection &), rhs); in SBThreadCollection()
27 const SBThreadCollection &SBThreadCollection::
28 operator=(const SBThreadCollection &rhs) { in operator =()
30 const lldb::SBThreadCollection &, in operator =()
31 SBThreadCollection, operator=,(const lldb::SBThreadCollection &), rhs); in operator =()
38 SBThreadCollection::SBThreadCollection(const ThreadCollectionSP &threads) in SBThreadCollection() function in SBThreadCollection
41 SBThreadCollection::~SBThreadCollection() = default;
43 void SBThreadCollection::SetOpaque(const lldb::ThreadCollectionSP &threads) { in SetOpaque()
47 lldb_private::ThreadCollection *SBThreadCollection::get() const { in get()
51 lldb_private::ThreadCollection *SBThreadCollection::operator->() const { in operator ->()
55 lldb::ThreadCollectionSP &SBThreadCollection::operator*() { in operator *()
59 const lldb::ThreadCollectionSP &SBThreadCollection::operator*() const { in operator *()
63 bool SBThreadCollection::IsValid() const { in IsValid()
64 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBThreadCollection, IsValid); in IsValid()
67 SBThreadCollection::operator bool() const { in operator bool()
68 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBThreadCollection, operator bool); in operator bool()
73 size_t SBThreadCollection::GetSize() { in GetSize()
74 LLDB_RECORD_METHOD_NO_ARGS(size_t, SBThreadCollection, GetSize); in GetSize()
81 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex()
82 LLDB_RECORD_METHOD(lldb::SBThread, SBThreadCollection, GetThreadAtIndex, in GetThreadAtIndex()
95 void RegisterMethods<SBThreadCollection>(Registry &R) { in RegisterMethods()
96 LLDB_REGISTER_CONSTRUCTOR(SBThreadCollection, ()); in RegisterMethods()
97 LLDB_REGISTER_CONSTRUCTOR(SBThreadCollection, in RegisterMethods()
98 (const lldb::SBThreadCollection &)); in RegisterMethods()
100 const lldb::SBThreadCollection &, in RegisterMethods()
101 SBThreadCollection, operator=,(const lldb::SBThreadCollection &)); in RegisterMethods()
102 LLDB_REGISTER_METHOD_CONST(bool, SBThreadCollection, IsValid, ()); in RegisterMethods()
103 LLDB_REGISTER_METHOD_CONST(bool, SBThreadCollection, operator bool, ()); in RegisterMethods()
104 LLDB_REGISTER_METHOD(size_t, SBThreadCollection, GetSize, ()); in RegisterMethods()
105 LLDB_REGISTER_METHOD(lldb::SBThread, SBThreadCollection, GetThreadAtIndex, in RegisterMethods()