Home
last modified time | relevance | path

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

/freebsd-src/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-src/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp535 DataExtractor &section_data) { in ReadSectionData()
538 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
552 section_data.SetData(data_sp, 0, data_sp->GetByteSize()); in ReadSectionData()
553 section_data.SetByteOrder(process_sp->GetByteOrder()); in ReadSectionData()
554 section_data.SetAddressByteSize(process_sp->GetAddressByteSize()); in ReadSectionData()
555 return section_data.GetByteSize(); in ReadSectionData()
564 section_data); in SplitArchivePathWithObject()
653 DataExtractor section_data; in CreateCallFrameInfo()
654 section_sp->GetSectionData(section_data); in CreateCallFrameInfo()
655 loadable.Contents = llvm::ArrayRef<uint8_t>(section_data in CreateCallFrameInfo()
526 ReadSectionData(Section * section,DataExtractor & section_data) ReadSectionData() argument
644 DataExtractor section_data; GetLoadableData() local
[all...]
/freebsd-src/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-src/contrib/llvm-project/lldb/include/lldb/Expression/
H A DObjectFileJIT.h105 lldb_private::DataExtractor &section_data) override;
/freebsd-src/crypto/openssh/
H A DPROTOCOL.krl27 string section_data
29 Where "section_type" indicates the type of the "section_data". An exception
/freebsd-src/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-src/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-src/contrib/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 no effect for GNU style output">;
108 def : Flag<["--"], "sd">, Alias<section_data>, HelpText<"Alias for --section-data">;
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h681 DataExtractor &section_data);
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3623 DataExtractor &section_data) {
3626 return section->GetObjectFile()->ReadSectionData(section, section_data);
3628 size_t result = ObjectFile::ReadSectionData(section, section_data);
3634 {reinterpret_cast<const char *>(section_data.GetDataStart()),
3635 size_t(section_data.GetByteSize())},
3642 section_data.Clear();
3653 section_data.Clear();
3657 section_data.SetData(buffer_sp);
3533 ReadSectionData(Section * section,DataExtractor & section_data) ReadSectionData() argument
H A DObjectFileELF.h148 lldb_private::DataExtractor &section_data) override;