Home
last modified time | relevance | path

Searched refs:section_offset (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DObjectFileJIT.cpp191 lldb::offset_t section_offset, void *dst, in SetLoadAddress()
194 if (section_offset < file_size) { in ReadSectionData()
195 size_t src_len = file_size - section_offset; in ReadSectionData() argument
199 ((uint8_t *)(uintptr_t)section->GetFileOffset()) + section_offset; in ReadSectionData()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp486 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
489 section_offset *= section->GetTargetByteSize(); in ReadSectionData()
493 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
506 return process_sp->ReadMemory(base_load_addr + section_offset, dst, in ReadSectionData()
511 if (section_offset < section_file_size) { in ReadSectionData()
512 const size_t section_bytes_left = section_file_size - section_offset; in ReadSectionData()
516 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
521 const uint64_t section_bytes_left = section_size - section_offset; in ReadSectionData()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DObjectFileJIT.h101 lldb::offset_t section_offset, void *dst,
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h674 lldb::offset_t section_offset, void *dst,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h144 lldb::offset_t section_offset, void *dst,
H A DObjectFileELF.cpp3605 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
3609 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
3613 return ObjectFile::ReadSectionData(section, section_offset, dst, dst_len); in ReadSectionData()
3619 return data.CopyData(section_offset, dst_len, dst); in ReadSectionData()