Home
last modified time | relevance | path

Searched refs:section_data (Results 1 – 14 of 14) sorted by relevance

/llvm-project/lldb/source/Expression/
H A DObjectFileJIT.cpp209 lldb_private::DataExtractor &section_data) { in ReadSectionData() argument
215 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
216 section_data.SetByteOrder(GetByteOrder()); in ReadSectionData()
217 section_data.SetAddressByteSize(GetAddressByteSize()); in ReadSectionData()
218 return section_data.GetByteSize(); in ReadSectionData()
220 section_data.Clear(); in ReadSectionData()
/llvm-project/lldb/unittests/ObjectFile/PECOFF/
H A DTestSectionSize.cpp69 DataExtractor section_data; in TEST_F() local
71 section_data), in TEST_F()
76 EXPECT_EQ(section_data.GetByteSize(), (uint64_t)496); in TEST_F()
/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp538 DataExtractor &section_data) { in ReadSectionData()
541 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
555 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
556 section_data.SetByteOrder(process_sp->GetByteOrder()); in ReadSectionData()
557 section_data.SetAddressByteSize(process_sp->GetAddressByteSize()); in ReadSectionData()
558 return section_data.GetByteSize(); in ReadSectionData()
567 section_data); in SplitArchivePathWithObject()
655 DataExtractor section_data; in GetLoadableData()
656 section_sp->GetSectionData(section_data); in GetLoadableData()
657 loadable.Contents = llvm::ArrayRef<uint8_t>(section_data in GetLoadableData()
535 ReadSectionData(Section * section,DataExtractor & section_data) ReadSectionData() argument
653 DataExtractor section_data; GetLoadableData() local
[all...]
/llvm-project/lldb/test/API/functionalities/dyld-exec-linux/
H A DTestDyldExecLinux.py39 section_data = interp_section.GetSectionData()
41 dyld_path = section_data.GetString(error, 0)
/llvm-project/lldb/source/API/
H A DSBSection.cpp185 DataExtractor section_data; in GetSectionData() local
186 section_sp->GetSectionData(section_data); in GetSectionData()
188 std::make_shared<DataExtractor>(section_data, offset, size)); in GetSectionData()
/llvm-project/lldb/test/API/python_api/section/
H A DTestSectionAPI.py66 section_data = section.GetSectionData().uint8s
67 self.assertEqual(section_data, [0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80, 0x90])
/llvm-project/lldb/test/API/functionalities/dyld-launch-linux/
H A DTestDyldLaunchLinux.py26 section_data = interp_section.GetSectionData()
28 exe = section_data.GetString(error, 0)
/llvm-project/lldb/include/lldb/Expression/
H A DObjectFileJIT.h105 lldb_private::DataExtractor &section_data) override;
/llvm-project/lldb/examples/python/
H A Dsymbolication.py689 section_data = section.GetSectionData()
690 if section_data:
692 section_data.GetDescription(ostream, section.GetFileAddress())
/llvm-project/lldb/source/Core/
H A DSection.cpp387 lldb::offset_t Section::GetSectionData(DataExtractor &section_data) { in GetSectionData()
389 return m_obj_file->ReadSectionData(this, section_data); in ContainsOnlyDebugInfo()
383 GetSectionData(DataExtractor & section_data) GetSectionData() argument
/llvm-project/llvm/tools/llvm-readobj/
H A DOpts.td36 def section_data : FF<"section-data", "Display section data for each section shown. This option has…
108 def : Flag<["--"], "sd">, Alias<section_data>, HelpText<"Alias for --section-data">;
/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3744 DataExtractor &section_data) {
3747 return section->GetObjectFile()->ReadSectionData(section, section_data);
3749 size_t result = ObjectFile::ReadSectionData(section, section_data);
3755 {reinterpret_cast<const char *>(section_data.GetDataStart()),
3756 size_t(section_data.GetByteSize())},
3763 section_data.Clear();
3774 section_data.Clear();
3778 section_data.SetData(buffer_sp);
3606 ReadSectionData(Section * section,DataExtractor & section_data) ReadSectionData() argument
H A DObjectFileELF.h148 lldb_private::DataExtractor &section_data) override;
/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h682 DataExtractor &section_data);