/llvm-project/lldb/source/API/ |
H A D | SBModule.cpp | 1 //===-- SBModule.cpp ------------------------------------------------------===// 9 #include "lldb/API/SBModule.h" 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(cons function in SBModule 50 SBModule::SBModule(lldb::SBProcess &process, lldb::addr_t header_addr) { SBModule() function in SBModule [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 | 21 #include "lldb/API/SBModule.h" 139 SBModule SBTarget::GetModuleAtIndexFromEvent(const uint32_t idx, in GetModuleAtIndexFromEvent() 145 return SBModule(module_list.GetModuleAtIndex(idx)); in GetModuleAtIndexFromEvent() 1496 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule() 1503 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule() 1532 lldb::SBModule SBTarget::AddModule(const SBModuleSpec &module_spec) { in AddModule() 1535 lldb::SBModule sb_module; in AddModule() 1561 bool SBTarget::AddModule(lldb::SBModule &module) { in AddModule() 1591 SBModule SBTarget::FindModule(const SBFileSpec &sb_file_spec) { in FindModule() 1594 SBModule sb_modul in FindModule() [all...] |
H A D | SBAddress.cpp | 203 SBModule SBAddress::GetModule() { in GetModule() 206 SBModule sb_module; in GetModule()
|
/llvm-project/lldb/bindings/interface/ |
H A D | SBModuleDocstrings.i | 81 ) lldb::SBModule; 90 ) lldb::SBModule::IsFileBacked; 101 ) lldb::SBModule::GetFileSpec; 117 ) lldb::SBModule::GetPlatformFileSpec; 120 ) lldb::SBModule::GetUUIDString; 133 ) lldb::SBModule::FindCompileUnits; 151 ) lldb::SBModule::FindFunctions; 166 ) lldb::SBModule::GetTypes; 183 ) lldb::SBModule::FindGlobalVariables; 197 ) lldb::SBModule::FindFirstGlobalVariable; [all …]
|
H A D | SBModuleExtensions.i | 4 # Helper function for SBModule class 26 STRING_EXTENSION_OUTSIDE(SBModule) 28 %extend lldb::SBModule {
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBModule.h | 1 //===-- SBModule.h ----------------------------------------------*- C++ -*-===// 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(); [all...] |
H A D | SBTarget.h | 69 static lldb::SBModule GetModuleAtIndexFromEvent(const uint32_t idx, 307 bool AddModule(lldb::SBModule &module); 309 lldb::SBModule AddModule(const char *path, const char *triple, 312 lldb::SBModule AddModule(const char *path, const char *triple, 315 lldb::SBModule AddModule(const SBModuleSpec &module_spec); 319 lldb::SBModule GetModuleAtIndex(uint32_t idx); 321 bool RemoveModule(lldb::SBModule module); 325 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec); 416 LLDB_DEPRECATED_FIXME("Use SetModuleLoadAddress(lldb::SBModule, uint64_t)", 417 "SetModuleLoadAddress(lldb::SBModule, uint64_ 956 friend class SBModule; global() variable [all...] |
H A D | SBSymbolContext.h | 42 lldb::SBModule GetModule(); 49 void SetModule(lldb::SBModule module); 64 friend class SBModule; variable
|
H A D | SBType.h | 236 lldb::SBModule GetModule(); 271 friend class SBModule; variable 312 friend class SBModule; variable
|
H A D | SBAddress.h | 76 lldb::SBModule GetModule(); 97 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 | SBCompileUnit.h | 81 friend class SBModule; variable
|
H A D | SBModuleSpec.h | 92 friend class SBModule; variable
|
H A D | SBFileSpec.h | 72 friend class SBModule; variable
|
/llvm-project/lldb/tools/lldb-fuzzer/lldb-target-fuzzer/ |
H A D | lldb-target-fuzzer.cpp | 32 SBModule::GarbageCollectAllocatedModules(); in LLVMFuzzerTestOneInput()
|
/llvm-project/lldb/tools/lldb-fuzzer/lldb-commandinterpreter-fuzzer/ |
H A D | lldb-commandinterpreter-fuzzer.cpp | 44 SBModule::GarbageCollectAllocatedModules(); in LLVMFuzzerTestOneInput()
|
/llvm-project/lldb/test/API/lang/c/unicode/ |
H A D | TestUnicodeSymbols.py | 14 module = lldb.SBModule(spec)
|
/llvm-project/lldb/test/API/python_api/sbmodule/FindTypes/ |
H A D | TestSBModuleFindTypes.py | 14 module = lldb.SBModule(spec)
|
/llvm-project/lldb/test/API/functionalities/dyld-exec-linux/ |
H A D | TestDyldExecLinux.py | 36 interp_section = lldb.SBModule(spec).FindSection(".interp")
|
/llvm-project/lldb/tools/lldb-fuzzer/lldb-expression-fuzzer/ |
H A D | lldb-expression-fuzzer.cpp | 108 SBModule::GarbageCollectAllocatedModules(); in DEFINE_BINARY_PROTO_FUZZER()
|
/llvm-project/lldb/test/API/functionalities/dyld-launch-linux/ |
H A D | TestDyldLaunchLinux.py | 23 interp_section = lldb.SBModule(spec).FindSection(".interp")
|
/llvm-project/lldb/test/API/functionalities/type_get_module/ |
H A D | TestTypeGetModule.py | 16 result = lldb.SBModule()
|