Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/lldb/source/API/
H A 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 …]
H A DSBSymbolContext.cpp54 SBModule SBSymbolContext::GetModule() { in GetModule()
57 SBModule sb_module; in GetModule()
115 void SBSymbolContext::SetModule(lldb::SBModule module) { in SetModule()
H A 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 …]
H A DSBAddress.cpp203 SBModule SBAddress::GetModule() { in GetModule()
206 SBModule sb_module; in GetModule()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A 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);
H A 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 …]
H A DSBSymbolContext.h38 lldb::SBModule GetModule();
45 void SetModule(lldb::SBModule module);
60 friend class SBModule; variable
H A DSBType.h198 lldb::SBModule GetModule();
231 friend class SBModule; variable
267 friend class SBModule; variable
H A DSBAddress.h76 lldb::SBModule GetModule();
96 friend class SBModule; variable
H A DSBSymbolContextList.h45 friend class SBModule;
H A DSBSymbol.h110 friend class SBModule; variable
H A DSBSection.h93 friend class SBModule; variable
H A DSBModuleSpec.h84 friend class SBModule; variable
H A DSBCompileUnit.h81 friend class SBModule; variable
H A DSBFileSpec.h69 friend class SBModule; variable
H A DSBStream.h78 friend class SBModule; variable
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A 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 …]
H A 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 …]
H A DSBSymbolContext.i62 lldb::SBModule GetModule ();
69 void SetModule (lldb::SBModule module);
/openbsd-src/gnu/llvm/lldb/tools/lldb-fuzzer/lldb-target-fuzzer/
H A Dlldb-target-fuzzer.cpp32 SBModule::GarbageCollectAllocatedModules(); in LLVMFuzzerTestOneInput()
/openbsd-src/gnu/llvm/lldb/tools/lldb-fuzzer/lldb-commandinterpreter-fuzzer/
H A Dlldb-commandinterpreter-fuzzer.cpp44 SBModule::GarbageCollectAllocatedModules(); in LLVMFuzzerTestOneInput()
/openbsd-src/gnu/llvm/lldb/tools/lldb-fuzzer/lldb-expression-fuzzer/
H A Dlldb-expression-fuzzer.cpp108 SBModule::GarbageCollectAllocatedModules(); in DEFINE_BINARY_PROTO_FUZZER()
/openbsd-src/gnu/usr.bin/clang/liblldbAPI/
H A DMakefile44 SBModule.cpp \
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A 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/
H A Dmain.cpp186 SBModule module(target.FindModule(exe_file_spec)); in main()

12