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 ReadSectionData() argument
194 if (section_offset < file_size) { in ReadSectionData()
195 size_t src_len = file_size - section_offset; in ReadSectionData()
199 ((uint8_t *)(uintptr_t)section->GetFileOffset()) + section_offset; in ReadSectionData()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp477 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
480 section_offset *= section->GetTargetByteSize(); in ReadSectionData()
484 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
497 return process_sp->ReadMemory(base_load_addr + section_offset, dst, in ReadSectionData()
502 if (section_offset < section_file_size) { in ReadSectionData()
503 const size_t section_bytes_left = section_file_size - section_offset; in ReadSectionData()
507 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
512 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.h673 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.cpp3515 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
3519 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
3523 return ObjectFile::ReadSectionData(section, section_offset, dst, dst_len); in ReadSectionData()
3529 return data.CopyData(section_offset, dst_len, dst); in ReadSectionData()