| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBModule.cpp | 32 SBModule::SBModule() { LLDB_INSTRUMENT_VA(this); } in SBModule() function in SBModule 34 SBModule::SBModule(const lldb::ModuleSP &module_sp) : m_opaque_sp(module_sp) {} in SBModule() function in SBModule 36 SBModule::SBModule(const SBModuleSpec &module_spec) { in SBModule() function in SBModule 46 SBModule::SBModule(const SBModule &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBModule() function in SBModule 50 SBModule::SBModule(lldb::SBProcess &process, lldb::addr_t header_addr) { in SBModule() function in SBModule 65 const SBModule &SBModule::operator=(const SBModule &rhs) { in operator =() 73 SBModule::~SBModule() = default; 75 bool SBModule::IsValid() const { in IsValid() 79 SBModule::operator bool() const { in operator bool() 85 void SBModule::Clear() { in Clear() [all …]
|
| H A D | SBSymbolContext.cpp | 54 SBModule SBSymbolContext::GetModule() { in GetModule() 57 SBModule sb_module; in GetModule() 115 void SBSymbolContext::SetModule(lldb::SBModule module) { in SetModule()
|
| H A D | SBTarget.cpp | 137 SBModule SBTarget::GetModuleAtIndexFromEvent(const uint32_t idx, in GetModuleAtIndexFromEvent() 143 return SBModule(module_list.GetModuleAtIndex(idx)); in GetModuleAtIndexFromEvent() 1468 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule() 1475 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule() 1479 lldb::SBModule sb_module; in AddModule() 1503 lldb::SBModule SBTarget::AddModule(const SBModuleSpec &module_spec) { in AddModule() 1506 lldb::SBModule sb_module; in AddModule() 1514 bool SBTarget::AddModule(lldb::SBModule &module) { in AddModule() 1544 SBModule SBTarget::FindModule(const SBFileSpec &sb_file_spec) { in FindModule() 1547 SBModule sb_module; in FindModule() [all …]
|
| H A D | SBAddress.cpp | 203 SBModule SBAddress::GetModule() { in GetModule() 206 SBModule sb_module; in GetModule()
|
| /openbsd-src/gnu/llvm/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(); 109 bool operator==(const lldb::SBModule &rhs) const; 111 bool operator!=(const lldb::SBModule &rhs) const; 307 explicit SBModule(const lldb::ModuleSP &module_sp);
|
| H A D | SBTarget.h | 62 static lldb::SBModule GetModuleAtIndexFromEvent(const uint32_t idx, 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); 390 lldb::SBError SetModuleLoadAddress(lldb::SBModule module, 401 lldb::SBError ClearModuleLoadAddress(lldb::SBModule module); [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 | 198 lldb::SBModule GetModule(); 231 friend class SBModule; variable 267 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 | 110 friend class SBModule; variable
|
| H A D | SBSection.h | 93 friend class SBModule; variable
|
| H A D | SBModuleSpec.h | 84 friend class SBModule; variable
|
| H A D | SBCompileUnit.h | 81 friend class SBModule; variable
|
| H A D | SBFileSpec.h | 69 friend class SBModule; variable
|
| H A D | SBStream.h | 78 friend class SBModule; variable
|
| /openbsd-src/gnu/llvm/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 (); 193 bool operator==(const lldb::SBModule &rhs) const; 195 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 429 SetModuleLoadAddress (lldb::SBModule module, 433 ClearModuleLoadAddress (lldb::SBModule module); [all …]
|
| H A D | SBSymbolContext.i | 62 lldb::SBModule GetModule (); 69 void SetModule (lldb::SBModule module);
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-fuzzer/lldb-target-fuzzer/ |
| H A D | lldb-target-fuzzer.cpp | 32 SBModule::GarbageCollectAllocatedModules(); in LLVMFuzzerTestOneInput()
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-fuzzer/lldb-commandinterpreter-fuzzer/ |
| H A D | lldb-commandinterpreter-fuzzer.cpp | 44 SBModule::GarbageCollectAllocatedModules(); in LLVMFuzzerTestOneInput()
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-fuzzer/lldb-expression-fuzzer/ |
| H A D | lldb-expression-fuzzer.cpp | 108 SBModule::GarbageCollectAllocatedModules(); in DEFINE_BINARY_PROTO_FUZZER()
|
| /openbsd-src/gnu/usr.bin/clang/liblldbAPI/ |
| H A D | Makefile | 44 SBModule.cpp \
|
| /openbsd-src/gnu/llvm/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.
|
| /openbsd-src/gnu/llvm/lldb/examples/lookup/ |
| H A D | main.cpp | 186 SBModule module(target.FindModule(exe_file_spec)); in main()
|