• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/lldb/source/API/

Lines Matching refs:SBModuleSpecList

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