| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBModule.cpp | 32 SBModule::SBModule() : m_opaque_sp() { in SBModule() function in SBModule 38 SBModule::SBModule(const SBModuleSpec &module_spec) : m_opaque_sp() { in SBModule() function in SBModule 48 SBModule::SBModule(const SBModule &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBModule() function in SBModule 49 LLDB_RECORD_CONSTRUCTOR(SBModule, (const lldb::SBModule &), rhs); in SBModule() 52 SBModule::SBModule(lldb::SBProcess &process, lldb::addr_t header_addr) in SBModule() function in SBModule 69 const SBModule &SBModule::operator=(const SBModule &rhs) { in operator =() 70 LLDB_RECORD_METHOD(const lldb::SBModule &, SBModule, operator=, in operator =() 78 SBModule::~SBModule() = default; 188 bool SBModule::operator==(const SBModule &rhs) const { in operator ==() 197 bool SBModule::operator!=(const SBModule &rhs) const { in operator !=() [all …]
|
| H A D | SBSymbolContext.cpp | 69 SBModule SBSymbolContext::GetModule() { in GetModule() 70 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBModule, SBSymbolContext, GetModule); in GetModule() 72 SBModule sb_module; in GetModule() 133 void SBSymbolContext::SetModule(lldb::SBModule module) { in SetModule() 134 LLDB_RECORD_METHOD(void, SBSymbolContext, SetModule, (lldb::SBModule), in SetModule() 247 LLDB_REGISTER_METHOD(lldb::SBModule, SBSymbolContext, GetModule, ()); in RegisterMethods() 254 LLDB_REGISTER_METHOD(void, SBSymbolContext, SetModule, (lldb::SBModule)); in RegisterMethods()
|
| H A D | SBTarget.cpp | 1623 lldb::SBModule sb_module; in AddModule() 1651 lldb::SBModule sb_module; in AddModule() 1659 bool SBTarget::AddModule(lldb::SBModule &module) { in AddModule() 1693 SBModule sb_module; in FindModule() 1767 SBModule SBTarget::GetModuleAtIndex(uint32_t idx) { in GetModuleAtIndex() 1771 SBModule sb_module; in GetModuleAtIndex() 1783 bool SBTarget::RemoveModule(lldb::SBModule module) { in RemoveModule() 2279 (lldb::SBModule), module); in ClearModuleLoadAddress() 2670 lldb::SBModule, SBTarget, AddModule, in RegisterMethods() 2718 (lldb::SBModule, int64_t)); in RegisterMethods() [all …]
|
| H A D | SBAddress.cpp | 211 SBModule SBAddress::GetModule() { in GetModule() 212 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBModule, SBAddress, GetModule); in GetModule() 214 SBModule sb_module; in GetModule() 306 LLDB_REGISTER_METHOD(lldb::SBModule, SBAddress, GetModule, ()); in RegisterMethods()
|
| H A D | SBType.cpp | 515 lldb::SBModule SBType::GetModule() { in GetModule() 516 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBModule, SBType, GetModule); in GetModule() 518 lldb::SBModule sb_module; in GetModule() 983 LLDB_REGISTER_METHOD(lldb::SBModule, SBType, GetModule, ()); in RegisterMethods()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBModule.h | 20 class LLDB_API SBModule { 22 SBModule(); 24 SBModule(const SBModule &rhs); 26 SBModule(const SBModuleSpec &module_spec); 28 const SBModule &operator=(const SBModule &rhs); 30 SBModule(lldb::SBProcess &process, lldb::addr_t header_addr); 32 ~SBModule(); 107 bool operator==(const lldb::SBModule &rhs) const; 109 bool operator!=(const lldb::SBModule &rhs) const; 305 explicit SBModule(const lldb::ModuleSP &module_sp);
|
| H A D | SBTarget.h | 286 bool AddModule(lldb::SBModule &module); 288 lldb::SBModule AddModule(const char *path, const char *triple, 291 lldb::SBModule AddModule(const char *path, const char *triple, 294 lldb::SBModule AddModule(const SBModuleSpec &module_spec); 298 lldb::SBModule GetModuleAtIndex(uint32_t idx); 300 bool RemoveModule(lldb::SBModule module); 304 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec); 383 lldb::SBError SetModuleLoadAddress(lldb::SBModule module, 394 lldb::SBError ClearModuleLoadAddress(lldb::SBModule module); 837 bool IsLoaded(const lldb::SBModule &module) const; [all …]
|
| H A D | SBSymbolContext.h | 38 lldb::SBModule GetModule(); 45 void SetModule(lldb::SBModule module); 60 friend class SBModule; variable
|
| H A D | SBType.h | 193 lldb::SBModule GetModule(); 226 friend class SBModule; variable 263 friend class SBModule; variable
|
| H A D | SBAddress.h | 76 lldb::SBModule GetModule(); 96 friend class SBModule; variable
|
| H A D | SBSymbolContextList.h | 45 friend class SBModule;
|
| H A D | SBSymbol.h | 74 friend class SBModule; variable
|
| H A D | SBSection.h | 87 friend class SBModule; variable
|
| H A D | SBCompileUnit.h | 78 friend class SBModule; variable
|
| H A D | SBModuleSpec.h | 84 friend class SBModule; variable
|
| H A D | SBFileSpec.h | 69 friend class SBModule; variable
|
| H A D | SBStream.h | 78 friend class SBModule; variable
|
| H A D | SBFrame.h | 49 lldb::SBModule GetModule() const;
|
| H A D | SBDefines.h | 59 class LLDB_API SBModule; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBModule.i | 14 # Helper function for SBModule class 116 ) SBModule; 117 class SBModule 121 SBModule (); 123 SBModule (const lldb::SBModule &rhs); 125 SBModule (const lldb::SBModuleSpec &module_spec); 127 SBModule (lldb::SBProcess &process, 130 ~SBModule (); 183 bool operator==(const lldb::SBModule &rhs) const; 185 bool operator!=(const lldb::SBModule &rhs) const; [all …]
|
| H A D | SBTarget.i | 93 static lldb::SBModule 346 AddModule (lldb::SBModule &module); 348 lldb::SBModule 353 lldb::SBModule 359 lldb::SBModule 365 lldb::SBModule 369 RemoveModule (lldb::SBModule module); 374 lldb::SBModule 423 SetModuleLoadAddress (lldb::SBModule module, 427 ClearModuleLoadAddress (lldb::SBModule module); [all …]
|
| H A D | SBSymbolContext.i | 62 lldb::SBModule GetModule (); 69 void SetModule (lldb::SBModule module);
|
| H A D | SBAddress.i | 125 lldb::SBModule
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python.swig | 22 * :py:class:`SBModule`: Represents an executable image and its associated object and symbol 23 files. :py:class:`SBTarget` contains SBModule.
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/ |
| H A D | interfaces.swig | 51 %include "./interface/SBModule.i"
|