Home
last modified time | relevance | path

Searched refs:SBModule (Results 1 – 25 of 44) sorted by relevance

12

/openbsd/src/gnu/llvm/lldb/source/API/
DSBModule.cpp32 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 …]
DSBSymbolContext.cpp54 SBModule SBSymbolContext::GetModule() { in GetModule()
57 SBModule sb_module; in GetModule()
115 void SBSymbolContext::SetModule(lldb::SBModule module) { in SetModule()
DSBTarget.cpp137 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 …]
DSBAddress.cpp203 SBModule SBAddress::GetModule() { in GetModule()
206 SBModule sb_module; in GetModule()
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBModule.h20 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);
DSBTarget.h62 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 …]
DSBSymbolContext.h38 lldb::SBModule GetModule();
45 void SetModule(lldb::SBModule module);
60 friend class SBModule; variable
DSBType.h198 lldb::SBModule GetModule();
231 friend class SBModule; variable
267 friend class SBModule; variable
DSBAddress.h76 lldb::SBModule GetModule();
96 friend class SBModule; variable
DSBSymbolContextList.h45 friend class SBModule;
DSBSymbol.h110 friend class SBModule; variable
DSBSection.h93 friend class SBModule; variable
DSBModuleSpec.h84 friend class SBModule; variable
DSBCompileUnit.h81 friend class SBModule; variable
DSBFileSpec.h69 friend class SBModule; variable
DSBStream.h78 friend class SBModule; variable
DSBFrame.h49 lldb::SBModule GetModule() const;
DSBDefines.h71 class LLDB_API SBModule; variable
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBModule.i14 # 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 …]
DSBTarget.i93 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 …]
DSBSymbolContext.i62 lldb::SBModule GetModule ();
69 void SetModule (lldb::SBModule module);
DSBAddress.i125 lldb::SBModule
/openbsd/src/gnu/usr.bin/clang/liblldbAPI/
DMakefile44 SBModule.cpp \
/openbsd/src/gnu/llvm/lldb/bindings/python/
Dpython.swig22 * :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/
Dmain.cpp186 SBModule module(target.FindModule(exe_file_spec)); in main()

12