/external/llvm-project/lldb/source/Core/ |
D | Address.cpp | 284 SectionSP section_sp(GetSection()); in GetModule() 291 SectionSP section_sp(GetSection()); in GetFileAddress() 311 SectionSP section_sp(GetSection()); in GetLoadAddress() 396 SectionSP section_sp(GetSection()); in Dump() 659 if (sc.symbol->GetAddressRef().GetSection() != GetSection()) { in Dump() 700 sc.symbol->GetAddressRef().GetSection() != GetSection()) in Dump() 776 if (GetSection()) in SectionWasDeleted() 801 SectionSP section_sp(GetSection()); in CalculateSymbolContext() 815 SectionSP section_sp(GetSection()); in CalculateSymbolContextModule() 822 SectionSP section_sp(GetSection()); in CalculateSymbolContextCompileUnit() [all …]
|
D | AddressRange.cpp | 63 if (addr.GetSection() == m_base_addr.GetSection()) in ContainsFileAddress() 95 if (addr.GetSection() == m_base_addr.GetSection()) in ContainsLoadAddress() 203 static_cast<void *>(m_base_addr.GetSection().get()), in DumpDebug()
|
D | Module.cpp | 465 SectionSP section_sp(so_addr.GetSection()); in ResolveSymbolContextForAddress() 561 if (addr_range.GetBaseAddress().GetSection() == in ResolveSymbolContextForAddress() 562 so_addr.GetSection()) { in ResolveSymbolContextForAddress()
|
D | FormatEntity.cpp | 480 if (func_addr.GetSection() == format_addr.GetSection()) { in DumpAddressOffsetFromFunction()
|
/external/llvm-project/lldb/unittests/ObjectFile/ELF/ |
D | TestObjectFileELF.cpp | 108 EXPECT_EQ(bss_sp, X->GetAddress().GetSection()); in TEST_F() 113 EXPECT_EQ(data_sp, Y->GetAddress().GetSection()); in TEST_F() 118 EXPECT_EQ(text_sp, start->GetAddress().GetSection()); in TEST_F()
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointResolverAddress.cpp | 69 SectionSP section_sp = m_addr.GetSection(); in SerializeToStructuredData() 98 if (m_addr.GetSection() || m_module_filespec) in ResolveBreakpoint() 111 if (m_addr.GetSection()) in ResolveBreakpointInModules()
|
D | Breakpoint.cpp | 549 SectionSP section_sp(section_addr.GetSection()); in ModulesChanged() 601 SectionSP section_sp(break_loc_sp->GetAddress().GetSection()); in ModulesChanged() 676 SectionSP section_sp = break_loc_sp->GetAddress().GetSection(); in ModuleReplaced()
|
D | BreakpointLocationList.cpp | 88 SectionSP section_sp(break_loc->GetAddress().GetSection()); in FindInModule()
|
/external/llvm-project/lldb/test/API/python_api/function_symbol/ |
D | TestSymbolAPI.py | 68 self.assertTrue(addr_line1.GetSection().GetSectionType() 85 self.assertTrue(addr_line2.GetSection().GetSectionType()
|
/external/llvm-project/lldb/examples/lookup/ |
D | main.cpp | 191 bool success = addr.IsValid() && addr.GetSection().IsValid(); in main() 205 addr.GetSection().GetName(), addr.GetOffset()); in main()
|
/external/llvm-project/lldb/source/API/ |
D | SBAddress.cpp | 159 lldb::SBSection SBAddress::GetSection() { in GetSection() function in SBAddress 160 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBSection, SBAddress, GetSection); in GetSection() 164 sb_section.SetSP(m_opaque_up->GetSection()); in GetSection() 303 LLDB_REGISTER_METHOD(lldb::SBSection, SBAddress, GetSection, ()); in RegisterMethods()
|
/external/google-breakpad/src/common/dwarf/ |
D | elf_reader.cc | 268 string_section_ = reader->GetSection(symbol_section_->header().sh_link); in SymbolIterator() 698 return GetSection(k); in GetSectionByType() 713 const ElfSectionReader<ElfArch> *section = GetSection(shndx); in GetSectionContentsByIndex() 733 const ElfSectionReader<ElfArch> *section = GetSection(shndx); in GetSectionContentsByName() 756 const ElfSectionReader<ElfArch> *section = GetSection(shndx); in GetSectionInfoByName() 859 GetSection(GetStringTableIndex()); in GetSectionName() 868 const ElfSectionReader<ElfArch> *GetSection(int num) { in GetSection() function in dwarf2reader::ElfReaderImpl
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBAddress.i | 97 GetSection (); 184 …section = property(GetSection, None, doc='''A read only property that returns an lldb object that …
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | Address.h | 320 return IsValid() && (GetSection().get() != nullptr); in IsSectionOffset() 416 lldb::SectionSP GetSection() const { return m_section_wp.lock(); } in GetSection() function
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_address.py | 15 obj.GetSection()
|
/external/llvm-project/lldb/source/Symbol/ |
D | Block.cpp | 244 if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) { in GetRangeContainingAddress() 279 if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) { in GetRangeIndexContainingAddress()
|
D | Symbol.cpp | 119 return m_addr_range.GetBaseAddress().GetSection().get() != nullptr; in ValueIsAddress() 182 if (m_addr_range.GetBaseAddress().GetSection()) { in GetDescription()
|
D | Function.cpp | 411 SectionSP section_sp(m_range.GetBaseAddress().GetSection()); in CalculateSymbolContextModule()
|
D | ObjectFile.cpp | 322 const SectionSP section_sp(symbol->GetAddressRef().GetSection()); in GetAddressClass()
|
/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/ |
D | TestGDBRemoteLoad.py | 18 self.assertEqual(".data", address.GetSection().GetName())
|
/external/llvm-project/lldb/unittests/ObjectFile/MachO/ |
D | TestObjectFileMachO.cpp | 65 EXPECT_EQ(OF->ReadSectionData(base.GetSection().get(), base.GetOffset(), in TEST_F()
|
/external/vixl/examples/aarch32/ |
D | disasm-a32.cc | 79 int GetSection() const { return section_; } in GetSection() function in Symbol 289 const Elf32_Shdr& shndx = shdr[sres->second.GetSection()]; in main()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBAddress.h | 72 lldb::SBSection GetSection();
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 1093 SectionSP section_sp(symbol->GetAddressRef().GetSection()); in GetAddressClass() 1877 SectionSP GetSection(uint8_t n_sect, addr_t file_addr) { in GetSection() function in MachSymtabSectionInfo 2886 symbol_section = section_info.GetSection( in ParseSymtab() 2901 symbol_section = section_info.GetSection( in ParseSymtab() 2934 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 2944 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 2978 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 3143 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 3154 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 3166 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() [all …]
|
/external/llvm-project/lldb/source/Target/ |
D | RegisterContextUnwind.cpp | 181 if (m_current_pc.GetSection() == m_start_pc.GetSection()) { in InitializeZerothFrame() 460 addr_range.GetBaseAddress().GetSection() != m_current_pc.GetSection() || in InitializeNonZerothFrame()
|