Home
last modified time | relevance | path

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

/freebsd/contrib/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()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp526 DataExtractor &section_data) { in ReadSectionData() argument
529 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
543 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
544 section_data.SetByteOrder(process_sp->GetByteOrder()); in ReadSectionData()
545 section_data.SetAddressByteSize(process_sp->GetAddressByteSize()); in ReadSectionData()
546 return section_data.GetByteSize(); in ReadSectionData()
555 section_data); in ReadSectionData()
644 DataExtractor section_data; in GetLoadableData() local
645 section_sp->GetSectionData(section_data); in GetLoadableData()
646 loadable.Contents = llvm::ArrayRef<uint8_t>(section_data.GetDataStart(), in GetLoadableData()
[all …]
/freebsd/contrib/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()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DObjectFileJIT.h105 lldb_private::DataExtractor &section_data) override;
/freebsd/crypto/openssh/
H A DPROTOCOL.krl27 string section_data
29 Where "section_type" indicates the type of the "section_data". An exception
/freebsd/sys/contrib/openzfs/cmd/
H A Darc_summary490 section_data = kstats_dict[section_name]
492 print('ERROR: Data on {0} not available'.format(section_data))
495 section_dict = dict(cleanup_line(l) for l in section_data)
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp383 lldb::offset_t Section::GetSectionData(DataExtractor &section_data) { in GetSectionData() argument
385 return m_obj_file->ReadSectionData(this, section_data); in GetSectionData()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DOpts.td35 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">;
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h680 DataExtractor &section_data);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3533 DataExtractor &section_data) { in ReadSectionData() argument
3536 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
3538 size_t result = ObjectFile::ReadSectionData(section, section_data); in ReadSectionData()
3544 {reinterpret_cast<const char *>(section_data.GetDataStart()), in ReadSectionData()
3545 size_t(section_data.GetByteSize())}, in ReadSectionData()
3552 section_data.Clear(); in ReadSectionData()
3563 section_data.Clear(); in ReadSectionData()
3567 section_data.SetData(buffer_sp); in ReadSectionData()
H A DObjectFileELF.h148 lldb_private::DataExtractor &section_data) override;