Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp250 lldb_private::DataExtractor &section_data) { in ReadSectionData() argument
256 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
257 section_data.SetByteOrder(GetByteOrder()); in ReadSectionData()
258 section_data.SetAddressByteSize(GetAddressByteSize()); in ReadSectionData()
259 return section_data.GetByteSize(); in ReadSectionData()
261 section_data.Clear(); in ReadSectionData()
H A DObjectFileJIT.h88 lldb_private::DataExtractor &section_data) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp521 DataExtractor &section_data) { in ReadSectionData() argument
524 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
538 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
539 section_data.SetByteOrder(process_sp->GetByteOrder()); in ReadSectionData()
540 section_data.SetAddressByteSize(process_sp->GetAddressByteSize()); in ReadSectionData()
541 return section_data.GetByteSize(); in ReadSectionData()
550 section_data); in ReadSectionData()
637 DataExtractor section_data; in GetLoadableData() local
638 section_sp->GetSectionData(section_data); in GetLoadableData()
639 loadable.Contents = llvm::ArrayRef<uint8_t>(section_data.GetDataStart(), in GetLoadableData()
[all …]
/freebsd-13.1/crypto/openssh/
H A DPROTOCOL.krl27 string section_data
29 Where "section_type" indicates the type of the "section_data". An exception
/freebsd-13.1/sys/contrib/openzfs/cmd/arc_summary/
H A Darc_summary3504 section_data = kstats_dict[section_name]
506 print('ERROR: Data on {0} not available'.format(section_data))
509 section_dict = dict(cleanup_line(l) for l in section_data)
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp393 lldb::offset_t Section::GetSectionData(DataExtractor &section_data) { in GetSectionData() argument
395 return m_obj_file->ReadSectionData(this, section_data); in GetSectionData()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DOpts.td32 def section_data : FF<"section-data", "Display section data for each section shown">;
95 def : Flag<["--"], "sd">, Alias<section_data>, HelpText<"Alias for --section-data">;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3350 DataExtractor &section_data) { in ReadSectionData() argument
3353 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
3355 size_t result = ObjectFile::ReadSectionData(section, section_data); in ReadSectionData()
3362 {reinterpret_cast<const char *>(section_data.GetDataStart()), in ReadSectionData()
3363 size_t(section_data.GetByteSize())}, in ReadSectionData()
3370 section_data.Clear(); in ReadSectionData()
3383 section_data.Clear(); in ReadSectionData()
3387 section_data.SetData(buffer_sp); in ReadSectionData()
H A DObjectFileELF.h147 lldb_private::DataExtractor &section_data) override;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h652 DataExtractor &section_data);