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

/freebsd-12-stable/contrib/gdb/gdb/
H A Dcoff-pe-read.c106 const struct read_pe_section_data *section_data,
111 CORE_ADDR vma = func_rva + section_data->vma_offset;
128 vma, section_data->ms_type, objfile);
133 prim_record_minimal_symbol (sym_name, vma, section_data->ms_type, objfile);
204 struct read_pe_section_data section_data[PE_SECTION_TABLE_SIZE]
284 section_data[sectix].rva_start = vaddr;
285 section_data[sectix].rva_end = vaddr + vsize;
305 bfd_map_over_sections (dll, get_section_vmas, section_data);
312 section_data[i].vma_offset
337 if ((func_rva >= section_data[secti
102 add_pe_exported_sym(char *sym_name, unsigned long func_rva, const struct read_pe_section_data *section_data, const char *dll_name, struct objfile *objfile) argument
200 struct read_pe_section_data section_data[PE_SECTION_TABLE_SIZE] local
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFContext.cpp122 DataExtractor section_data;
123 section.GetSectionData(section_data);
127 addr_size = section_data.GetByteSize();
129 llvm::StringRef data = llvm::toStringRef(section_data.GetData());
H A DSymbolFileDWARFDwp.cpp93 lldb_private::DWARFDataExtractor section_data; local
94 if (!LoadRawSectionData(sect_type, section_data))
104 data.SetData(section_data, offsets->Offset, offsets->Length);
106 data.SetData(section_data, 0, section_data.GetByteSize());
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp247 lldb_private::DataExtractor &section_data) {
253 section_data.SetData(data_sp, 0, data_sp->GetByteSize());
254 section_data.SetByteOrder(GetByteOrder());
255 section_data.SetAddressByteSize(GetAddressByteSize());
256 return section_data.GetByteSize();
258 section_data.Clear();
245 ReadSectionData( lldb_private::Section *section, lldb_private::DataExtractor &section_data) argument
H A DObjectFileJIT.h88 lldb_private::DataExtractor &section_data) override;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp542 DataExtractor &section_data) {
545 return section->GetObjectFile()->ReadSectionData(section, section_data);
556 section_data.SetData(data_sp, 0, data_sp->GetByteSize());
557 section_data.SetByteOrder(process_sp->GetByteOrder());
558 section_data.SetAddressByteSize(process_sp->GetAddressByteSize());
559 return section_data.GetByteSize();
564 section_data);
572 section_data);
668 DataExtractor section_data; local
669 section_sp->GetSectionData(section_data);
541 ReadSectionData(Section *section, DataExtractor &section_data) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp395 lldb::offset_t Section::GetSectionData(DataExtractor &section_data) { argument
397 return m_obj_file->ReadSectionData(this, section_data);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h626 DataExtractor &section_data);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h147 lldb_private::DataExtractor &section_data) override;
H A DObjectFileELF.cpp3317 DataExtractor &section_data) {
3320 return section->GetObjectFile()->ReadSectionData(section, section_data);
3322 size_t result = ObjectFile::ReadSectionData(section, section_data);
3329 {reinterpret_cast<const char *>(section_data.GetDataStart()),
3330 size_t(section_data.GetByteSize())},
3337 section_data.Clear();
3350 section_data.Clear();
3354 section_data.SetData(buffer_sp);
3316 ReadSectionData(Section *section, DataExtractor &section_data) argument

Completed in 140 milliseconds