Lines Matching refs:SBModule

34 SBModule::SBModule() : m_opaque_sp() {}  in SBModule()  function in SBModule
36 SBModule::SBModule(const lldb::ModuleSP &module_sp) : m_opaque_sp(module_sp) {} in SBModule() function in SBModule
38 SBModule::SBModule(const SBModuleSpec &module_spec) : m_opaque_sp() { in SBModule() function in SBModule
46 SBModule::SBModule(const SBModule &rhs) : m_opaque_sp(rhs.m_opaque_sp) {} in SBModule() function in SBModule
48 SBModule::SBModule(lldb::SBProcess &process, lldb::addr_t header_addr) in SBModule() function in SBModule
62 const SBModule &SBModule::operator=(const SBModule &rhs) { in operator =()
68 SBModule::~SBModule() {} in ~SBModule()
70 bool SBModule::IsValid() const { return m_opaque_sp.get() != NULL; } in IsValid()
72 void SBModule::Clear() { m_opaque_sp.reset(); } in Clear()
74 SBFileSpec SBModule::GetFileSpec() const { in GetFileSpec()
90 lldb::SBFileSpec SBModule::GetPlatformFileSpec() const { in GetPlatformFileSpec()
106 bool SBModule::SetPlatformFileSpec(const lldb::SBFileSpec &platform_file) { in SetPlatformFileSpec()
124 lldb::SBFileSpec SBModule::GetRemoteInstallFileSpec() { in GetRemoteInstallFileSpec()
132 bool SBModule::SetRemoteInstallFileSpec(lldb::SBFileSpec &file) { in SetRemoteInstallFileSpec()
141 const uint8_t *SBModule::GetUUIDBytes() const { in GetUUIDBytes()
162 const char *SBModule::GetUUIDString() const { in GetUUIDString()
188 bool SBModule::operator==(const SBModule &rhs) const { in operator ==()
194 bool SBModule::operator!=(const SBModule &rhs) const { in operator !=()
200 ModuleSP SBModule::GetSP() const { return m_opaque_sp; } in GetSP()
202 void SBModule::SetSP(const ModuleSP &module_sp) { m_opaque_sp = module_sp; } in SetSP()
204 SBAddress SBModule::ResolveFileAddress(lldb::addr_t vm_addr) { in ResolveFileAddress()
216 SBModule::ResolveSymbolContextForAddress(const SBAddress &addr, in ResolveSymbolContextForAddress()
226 bool SBModule::GetDescription(SBStream &description) { in GetDescription()
238 uint32_t SBModule::GetNumCompileUnits() { in GetNumCompileUnits()
246 SBCompileUnit SBModule::GetCompileUnitAtIndex(uint32_t index) { in GetCompileUnitAtIndex()
257 SBModule::FindCompileUnits(const SBFileSpec &sb_file_spec) { in FindCompileUnits()
276 size_t SBModule::GetNumSymbols() { in GetNumSymbols()
286 SBSymbol SBModule::GetSymbolAtIndex(size_t idx) { in GetSymbolAtIndex()
295 lldb::SBSymbol SBModule::FindSymbol(const char *name, in FindSymbol()
309 lldb::SBSymbolContextList SBModule::FindSymbols(const char *name, in FindSymbols()
334 size_t SBModule::GetNumSections() { in GetNumSections()
346 SBSection SBModule::GetSectionAtIndex(size_t idx) { in GetSectionAtIndex()
360 lldb::SBSymbolContextList SBModule::FindFunctions(const char *name, in FindFunctions()
375 SBValueList SBModule::FindGlobalVariables(SBTarget &target, const char *name, in FindGlobalVariables()
399 lldb::SBValue SBModule::FindFirstGlobalVariable(lldb::SBTarget &target, in FindFirstGlobalVariable()
407 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType()
427 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) { in GetBasicType()
438 lldb::SBTypeList SBModule::FindTypes(const char *type) { in FindTypes()
470 lldb::SBType SBModule::GetTypeByID(lldb::user_id_t uid) { in GetTypeByID()
483 lldb::SBTypeList SBModule::GetTypes(uint32_t type_mask) { in GetTypes()
500 SBSection SBModule::FindSection(const char *sect_name) { in FindSection()
519 lldb::ByteOrder SBModule::GetByteOrder() { in GetByteOrder()
526 const char *SBModule::GetTriple() { in GetTriple()
539 uint32_t SBModule::GetAddressByteSize() { in GetAddressByteSize()
546 uint32_t SBModule::GetVersion(uint32_t *versions, uint32_t num_versions) { in GetVersion()
572 lldb::SBFileSpec SBModule::GetSymbolFileSpec() const { in GetSymbolFileSpec()
583 lldb::SBAddress SBModule::GetObjectFileHeaderAddress() const { in GetObjectFileHeaderAddress()
594 lldb::SBAddress SBModule::GetObjectFileEntryPointAddress() const { in GetObjectFileEntryPointAddress()