Lines Matching refs:SBModuleSpecList
152 SBModuleSpecList::SBModuleSpecList() : m_opaque_up(new ModuleSpecList()) { in SBModuleSpecList() function in SBModuleSpecList
153 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBModuleSpecList); in SBModuleSpecList()
156 SBModuleSpecList::SBModuleSpecList(const SBModuleSpecList &rhs) in SBModuleSpecList() function in SBModuleSpecList
158 LLDB_RECORD_CONSTRUCTOR(SBModuleSpecList, (const lldb::SBModuleSpecList &), in SBModuleSpecList()
162 SBModuleSpecList &SBModuleSpecList::operator=(const SBModuleSpecList &rhs) { in operator =()
164 lldb::SBModuleSpecList &, in operator =()
165 SBModuleSpecList, operator=,(const lldb::SBModuleSpecList &), rhs); in operator =()
172 SBModuleSpecList::~SBModuleSpecList() = default;
174 SBModuleSpecList SBModuleSpecList::GetModuleSpecifications(const char *path) { in GetModuleSpecifications()
175 LLDB_RECORD_STATIC_METHOD(lldb::SBModuleSpecList, SBModuleSpecList, in GetModuleSpecifications()
178 SBModuleSpecList specs; in GetModuleSpecifications()
186 void SBModuleSpecList::Append(const SBModuleSpec &spec) { in Append()
187 LLDB_RECORD_METHOD(void, SBModuleSpecList, Append, in Append()
193 void SBModuleSpecList::Append(const SBModuleSpecList &spec_list) { in Append()
194 LLDB_RECORD_METHOD(void, SBModuleSpecList, Append, in Append()
195 (const lldb::SBModuleSpecList &), spec_list); in Append()
200 size_t SBModuleSpecList::GetSize() { in GetSize()
201 LLDB_RECORD_METHOD_NO_ARGS(size_t, SBModuleSpecList, GetSize); in GetSize()
206 SBModuleSpec SBModuleSpecList::GetSpecAtIndex(size_t i) { in GetSpecAtIndex()
207 LLDB_RECORD_METHOD(lldb::SBModuleSpec, SBModuleSpecList, GetSpecAtIndex, in GetSpecAtIndex()
216 SBModuleSpecList::FindFirstMatchingSpec(const SBModuleSpec &match_spec) { in FindFirstMatchingSpec()
217 LLDB_RECORD_METHOD(lldb::SBModuleSpec, SBModuleSpecList, in FindFirstMatchingSpec()
227 SBModuleSpecList
228 SBModuleSpecList::FindMatchingSpecs(const SBModuleSpec &match_spec) { in FindMatchingSpecs()
229 LLDB_RECORD_METHOD(lldb::SBModuleSpecList, SBModuleSpecList, in FindMatchingSpecs()
233 SBModuleSpecList specs; in FindMatchingSpecs()
239 bool SBModuleSpecList::GetDescription(lldb::SBStream &description) { in GetDescription()
240 LLDB_RECORD_METHOD(bool, SBModuleSpecList, GetDescription, (lldb::SBStream &), in GetDescription()
276 LLDB_REGISTER_CONSTRUCTOR(SBModuleSpecList, ()); in RegisterMethods()
277 LLDB_REGISTER_CONSTRUCTOR(SBModuleSpecList, in RegisterMethods()
278 (const lldb::SBModuleSpecList &)); in RegisterMethods()
280 lldb::SBModuleSpecList &, in RegisterMethods()
281 SBModuleSpecList, operator=,(const lldb::SBModuleSpecList &)); in RegisterMethods()
282 LLDB_REGISTER_STATIC_METHOD(lldb::SBModuleSpecList, SBModuleSpecList, in RegisterMethods()
284 LLDB_REGISTER_METHOD(void, SBModuleSpecList, Append, in RegisterMethods()
286 LLDB_REGISTER_METHOD(void, SBModuleSpecList, Append, in RegisterMethods()
287 (const lldb::SBModuleSpecList &)); in RegisterMethods()
288 LLDB_REGISTER_METHOD(size_t, SBModuleSpecList, GetSize, ()); in RegisterMethods()
289 LLDB_REGISTER_METHOD(lldb::SBModuleSpec, SBModuleSpecList, GetSpecAtIndex, in RegisterMethods()
291 LLDB_REGISTER_METHOD(lldb::SBModuleSpec, SBModuleSpecList, in RegisterMethods()
293 LLDB_REGISTER_METHOD(lldb::SBModuleSpecList, SBModuleSpecList, in RegisterMethods()
295 LLDB_REGISTER_METHOD(bool, SBModuleSpecList, GetDescription, in RegisterMethods()