Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DObjectFileJIT.cpp209 lldb_private::DataExtractor &section_data) { in ReadSectionData()
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()
213 ReadSectionData(lldb_private::Section * section,lldb_private::DataExtractor & section_data) ReadSectionData() argument
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp535 DataExtractor &section_data) { in ReadSectionData() argument
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 ReadSectionData()
653 DataExtractor section_data; in GetLoadableData() local
654 section_sp->GetSectionData(section_data); in GetLoadableData()
655 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/usr.sbin/bluetooth/rtlbtfw/
H A Drtlbt_fw.c476 uint8_t *section_data, *patch_buf; in rtlbt_parse_fwfile_v2() local
506 section_data = rtlbt_iov_fetch(&iov, section_len); in rtlbt_parse_fwfile_v2()
507 if (section_data == NULL) in rtlbt_parse_fwfile_v2()
519 section_data, section_len, rom_version, key_id); in rtlbt_parse_fwfile_v2()
/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 Dzarcsummary491 section_data = kstats_dict[section_name]
493 print('ERROR: Data on {0} not available'.format(section_data))
496 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.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">;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3623 DataExtractor &section_data) { in ReadSectionData() argument
3626 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
3628 size_t result = ObjectFile::ReadSectionData(section, section_data); in ReadSectionData()
3634 {reinterpret_cast<const char *>(section_data.GetDataStart()), in ReadSectionData()
3635 size_t(section_data.GetByteSize())}, in ReadSectionData()
3642 section_data.Clear(); in ReadSectionData()
3653 section_data.Clear(); in ReadSectionData()
3657 section_data.SetData(buffer_sp); in ReadSectionData()
H A DObjectFileELF.h148 lldb_private::DataExtractor &section_data) override;
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h681 DataExtractor &section_data);