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.cpp489 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
492 section_offset *= section->GetTargetByteSize(); in ReadSectionData()
496 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
509 return process_sp->ReadMemory(base_load_addr + section_offset, dst, in ReadSectionData()
514 if (section_offset < section_file_size) { in ReadSectionData()
515 const size_t section_bytes_left = section_file_size - section_offset; in ReadSectionData()
519 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
524 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.h693 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.cpp3696 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
3700 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
3704 return ObjectFile::ReadSectionData(section, section_offset, dst, dst_len); in ReadSectionData()
3710 return data.CopyData(section_offset, dst_len, dst); in ReadSectionData()