Lines Matching refs:SBModuleSpec
22 SBModuleSpec::SBModuleSpec() : m_opaque_up(new lldb_private::ModuleSpec()) { in SBModuleSpec() function in SBModuleSpec
23 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBModuleSpec); in SBModuleSpec()
26 SBModuleSpec::SBModuleSpec(const SBModuleSpec &rhs) : m_opaque_up() { in SBModuleSpec() function in SBModuleSpec
27 LLDB_RECORD_CONSTRUCTOR(SBModuleSpec, (const lldb::SBModuleSpec &), rhs); in SBModuleSpec()
32 const SBModuleSpec &SBModuleSpec::operator=(const SBModuleSpec &rhs) { in operator =()
33 LLDB_RECORD_METHOD(const lldb::SBModuleSpec &, in operator =()
34 SBModuleSpec, operator=,(const lldb::SBModuleSpec &), rhs); in operator =()
41 SBModuleSpec::~SBModuleSpec() = default;
43 bool SBModuleSpec::IsValid() const { in IsValid()
44 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBModuleSpec, IsValid); in IsValid()
47 SBModuleSpec::operator bool() const { in operator bool()
48 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBModuleSpec, operator bool); in operator bool()
53 void SBModuleSpec::Clear() { in Clear()
54 LLDB_RECORD_METHOD_NO_ARGS(void, SBModuleSpec, Clear); in Clear()
59 SBFileSpec SBModuleSpec::GetFileSpec() { in GetFileSpec()
60 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBModuleSpec, GetFileSpec); in GetFileSpec()
66 void SBModuleSpec::SetFileSpec(const lldb::SBFileSpec &sb_spec) { in SetFileSpec()
67 LLDB_RECORD_METHOD(void, SBModuleSpec, SetFileSpec, in SetFileSpec()
73 lldb::SBFileSpec SBModuleSpec::GetPlatformFileSpec() { in GetPlatformFileSpec()
74 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBModuleSpec, in GetPlatformFileSpec()
80 void SBModuleSpec::SetPlatformFileSpec(const lldb::SBFileSpec &sb_spec) { in SetPlatformFileSpec()
81 LLDB_RECORD_METHOD(void, SBModuleSpec, SetPlatformFileSpec, in SetPlatformFileSpec()
87 lldb::SBFileSpec SBModuleSpec::GetSymbolFileSpec() { in GetSymbolFileSpec()
88 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBModuleSpec, GetSymbolFileSpec); in GetSymbolFileSpec()
93 void SBModuleSpec::SetSymbolFileSpec(const lldb::SBFileSpec &sb_spec) { in SetSymbolFileSpec()
94 LLDB_RECORD_METHOD(void, SBModuleSpec, SetSymbolFileSpec, in SetSymbolFileSpec()
100 const char *SBModuleSpec::GetObjectName() { in GetObjectName()
101 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBModuleSpec, GetObjectName); in GetObjectName()
106 void SBModuleSpec::SetObjectName(const char *name) { in SetObjectName()
107 LLDB_RECORD_METHOD(void, SBModuleSpec, SetObjectName, (const char *), name); in SetObjectName()
112 const char *SBModuleSpec::GetTriple() { in GetTriple()
113 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBModuleSpec, GetTriple); in GetTriple()
123 void SBModuleSpec::SetTriple(const char *triple) { in SetTriple()
124 LLDB_RECORD_METHOD(void, SBModuleSpec, SetTriple, (const char *), triple); in SetTriple()
129 const uint8_t *SBModuleSpec::GetUUIDBytes() { in GetUUIDBytes()
133 size_t SBModuleSpec::GetUUIDLength() { in GetUUIDLength()
134 LLDB_RECORD_METHOD_NO_ARGS(size_t, SBModuleSpec, GetUUIDLength); in GetUUIDLength()
139 bool SBModuleSpec::SetUUIDBytes(const uint8_t *uuid, size_t uuid_len) { in SetUUIDBytes()
144 bool SBModuleSpec::GetDescription(lldb::SBStream &description) { in GetDescription()
145 LLDB_RECORD_METHOD(bool, SBModuleSpec, GetDescription, (lldb::SBStream &), in GetDescription()
186 void SBModuleSpecList::Append(const SBModuleSpec &spec) { in Append()
188 (const lldb::SBModuleSpec &), spec); in Append()
206 SBModuleSpec SBModuleSpecList::GetSpecAtIndex(size_t i) { in GetSpecAtIndex()
207 LLDB_RECORD_METHOD(lldb::SBModuleSpec, SBModuleSpecList, GetSpecAtIndex, in GetSpecAtIndex()
210 SBModuleSpec sb_module_spec; in GetSpecAtIndex()
215 SBModuleSpec
216 SBModuleSpecList::FindFirstMatchingSpec(const SBModuleSpec &match_spec) { in FindFirstMatchingSpec()
217 LLDB_RECORD_METHOD(lldb::SBModuleSpec, SBModuleSpecList, in FindFirstMatchingSpec()
218 FindFirstMatchingSpec, (const lldb::SBModuleSpec &), in FindFirstMatchingSpec()
221 SBModuleSpec sb_module_spec; in FindFirstMatchingSpec()
228 SBModuleSpecList::FindMatchingSpecs(const SBModuleSpec &match_spec) { in FindMatchingSpecs()
230 FindMatchingSpecs, (const lldb::SBModuleSpec &), in FindMatchingSpecs()
251 void RegisterMethods<SBModuleSpec>(Registry &R) { in RegisterMethods()
252 LLDB_REGISTER_CONSTRUCTOR(SBModuleSpec, ()); in RegisterMethods()
253 LLDB_REGISTER_CONSTRUCTOR(SBModuleSpec, (const lldb::SBModuleSpec &)); in RegisterMethods()
254 LLDB_REGISTER_METHOD(const lldb::SBModuleSpec &, in RegisterMethods()
255 SBModuleSpec, operator=,(const lldb::SBModuleSpec &)); in RegisterMethods()
256 LLDB_REGISTER_METHOD_CONST(bool, SBModuleSpec, IsValid, ()); in RegisterMethods()
257 LLDB_REGISTER_METHOD_CONST(bool, SBModuleSpec, operator bool, ()); in RegisterMethods()
258 LLDB_REGISTER_METHOD(void, SBModuleSpec, Clear, ()); in RegisterMethods()
259 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModuleSpec, GetFileSpec, ()); in RegisterMethods()
260 LLDB_REGISTER_METHOD(void, SBModuleSpec, SetFileSpec, in RegisterMethods()
262 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModuleSpec, GetPlatformFileSpec, in RegisterMethods()
264 LLDB_REGISTER_METHOD(void, SBModuleSpec, SetPlatformFileSpec, in RegisterMethods()
266 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModuleSpec, GetSymbolFileSpec, ()); in RegisterMethods()
267 LLDB_REGISTER_METHOD(void, SBModuleSpec, SetSymbolFileSpec, in RegisterMethods()
269 LLDB_REGISTER_METHOD(const char *, SBModuleSpec, GetObjectName, ()); in RegisterMethods()
270 LLDB_REGISTER_METHOD(void, SBModuleSpec, SetObjectName, (const char *)); in RegisterMethods()
271 LLDB_REGISTER_METHOD(const char *, SBModuleSpec, GetTriple, ()); in RegisterMethods()
272 LLDB_REGISTER_METHOD(void, SBModuleSpec, SetTriple, (const char *)); in RegisterMethods()
273 LLDB_REGISTER_METHOD(size_t, SBModuleSpec, GetUUIDLength, ()); in RegisterMethods()
274 LLDB_REGISTER_METHOD(bool, SBModuleSpec, GetDescription, in RegisterMethods()
285 (const lldb::SBModuleSpec &)); in RegisterMethods()
289 LLDB_REGISTER_METHOD(lldb::SBModuleSpec, SBModuleSpecList, GetSpecAtIndex, in RegisterMethods()
291 LLDB_REGISTER_METHOD(lldb::SBModuleSpec, SBModuleSpecList, in RegisterMethods()
292 FindFirstMatchingSpec, (const lldb::SBModuleSpec &)); in RegisterMethods()
294 FindMatchingSpecs, (const lldb::SBModuleSpec &)); in RegisterMethods()