Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dcoff-pe-read.c104 const struct read_pe_section_data *section_data, in add_pe_exported_sym() argument
109 CORE_ADDR vma = func_rva + section_data->vma_offset; in add_pe_exported_sym()
126 vma, section_data->ms_type, objfile); in add_pe_exported_sym()
131 prim_record_minimal_symbol (sym_name, vma, section_data->ms_type, objfile); in add_pe_exported_sym()
200 struct read_pe_section_data section_data[PE_SECTION_TABLE_SIZE] in read_pe_exported_syms() local
280 section_data[sectix].rva_start = vaddr; in read_pe_exported_syms()
281 section_data[sectix].rva_end = vaddr + vsize; in read_pe_exported_syms()
301 bfd_map_over_sections (dll, get_section_vmas, section_data); in read_pe_exported_syms()
308 section_data[i].vma_offset in read_pe_exported_syms()
333 if ((func_rva >= section_data[sectix].rva_start) in read_pe_exported_syms()
[all …]
/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dsymbolication.py620 section_data = section.GetSectionData()
621 if section_data:
623 section_data.GetDescription(ostream, section.GetFileAddress())
/openbsd-src/usr.bin/ssh/
H A DPROTOCOL.krl27 string section_data
29 Where "section_type" indicates the type of the "section_data". An exception
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DOpts.td33 def section_data : FF<"section-data", "Display section data for each section shown. This option has…
105 def : Flag<["--"], "sd">, Alias<section_data>, HelpText<"Alias for --section-data">;
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DObjectFile.h674 DataExtractor &section_data);
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3424 DataExtractor &section_data) { in ReadSectionData() argument
3427 return section->GetObjectFile()->ReadSectionData(section, section_data); in ReadSectionData()
3429 size_t result = ObjectFile::ReadSectionData(section, section_data); in ReadSectionData()
3435 {reinterpret_cast<const char *>(section_data.GetDataStart()), in ReadSectionData()
3436 size_t(section_data.GetByteSize())}, in ReadSectionData()
3443 section_data.Clear(); in ReadSectionData()
3454 section_data.Clear(); in ReadSectionData()
3458 section_data.SetData(buffer_sp); in ReadSectionData()
H A DObjectFileELF.h148 lldb_private::DataExtractor &section_data) override;
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Delf32-xtensa.c3878 struct elf_xtensa_section_data *section_data; local
3884 section_data = (struct elf_xtensa_section_data *) elf_section_data (sec);
3885 return &section_data->relax_info;
H A DChangeLog-94955964 to be cached in the section_data. Correct the reloc address.
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Delf32-xtensa.c5025 struct elf_xtensa_section_data *section_data; in get_xtensa_relax_info() local
5031 section_data = (struct elf_xtensa_section_data *) elf_section_data (sec); in get_xtensa_relax_info()
5032 return &section_data->relax_info; in get_xtensa_relax_info()
H A DChangeLog-94955964 to be cached in the section_data. Correct the reloc address.