Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp222 lldb_private::DataExtractor &section_data) { in ReadSectionData() argument
228 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
229 section_data.SetByteOrder(GetByteOrder()); in ReadSectionData()
230 section_data.SetAddressByteSize(GetAddressByteSize()); in ReadSectionData()
231 return section_data.GetByteSize(); in ReadSectionData()
233 section_data.Clear(); in ReadSectionData()
H A DObjectFileJIT.h90 lldb_private::DataExtractor &section_data) override;
/llvm-project-15.0.7/lldb/source/Symbol/
H A DObjectFile.cpp524 DataExtractor &section_data) { in ReadSectionData() argument
527 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
541 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
542 section_data.SetByteOrder(process_sp->GetByteOrder()); in ReadSectionData()
543 section_data.SetAddressByteSize(process_sp->GetAddressByteSize()); in ReadSectionData()
544 return section_data.GetByteSize(); in ReadSectionData()
553 section_data); in ReadSectionData()
642 DataExtractor section_data; in GetLoadableData() local
643 section_sp->GetSectionData(section_data); in GetLoadableData()
644 loadable.Contents = llvm::ArrayRef<uint8_t>(section_data.GetDataStart(), in GetLoadableData()
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/dyld-exec-linux/
H A DTestDyldExecLinux.py38 section_data = interp_section.GetSectionData()
40 dyld_path = section_data.GetString(error,0)
/llvm-project-15.0.7/lldb/test/API/functionalities/dyld-launch-linux/
H A DTestDyldLaunchLinux.py25 section_data = interp_section.GetSectionData()
27 exe = section_data.GetString(error,0)
/llvm-project-15.0.7/lldb/examples/python/
H A Dsymbolication.py621 section_data = section.GetSectionData()
622 if section_data:
624 section_data.GetDescription(ostream, section.GetFileAddress())
/llvm-project-15.0.7/lldb/source/Core/
H A DSection.cpp379 lldb::offset_t Section::GetSectionData(DataExtractor &section_data) { in GetSectionData() argument
381 return m_obj_file->ReadSectionData(this, section_data); in GetSectionData()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DOpts.td33 def section_data : FF<"section-data", "Display section data for each section shown. This option has…
101 def : Flag<["--"], "sd">, Alias<section_data>, HelpText<"Alias for --section-data">;
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3362 DataExtractor &section_data) { in ReadSectionData() argument
3365 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
3367 size_t result = ObjectFile::ReadSectionData(section, section_data); in ReadSectionData()
3373 {reinterpret_cast<const char *>(section_data.GetDataStart()), in ReadSectionData()
3374 size_t(section_data.GetByteSize())}, in ReadSectionData()
3381 section_data.Clear(); in ReadSectionData()
3393 section_data.Clear(); in ReadSectionData()
3397 section_data.SetData(buffer_sp); in ReadSectionData()
H A DObjectFileELF.h147 lldb_private::DataExtractor &section_data) override;
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DObjectFile.h674 DataExtractor &section_data);