Searched refs:section_offset (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/JIT/ |
| H A D | ObjectFileJIT.cpp | 204 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument 207 if (section_offset < file_size) { in ReadSectionData() 208 size_t src_len = file_size - section_offset; in ReadSectionData() 212 ((uint8_t *)(uintptr_t)section->GetFileOffset()) + section_offset; in ReadSectionData()
|
| H A D | ObjectFileJIT.h | 85 lldb::offset_t section_offset, void *dst,
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | ObjectFile.cpp | 475 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument 478 section_offset *= section->GetTargetByteSize(); in ReadSectionData() 482 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData() 495 return process_sp->ReadMemory(base_load_addr + section_offset, dst, in ReadSectionData() 500 if (section_offset < section_file_size) { in ReadSectionData() 501 const size_t section_bytes_left = section_file_size - section_offset; in ReadSectionData() 505 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData() 510 const uint64_t section_bytes_left = section_size - section_offset; in ReadSectionData()
|
| H A D | LineEntry.cpp | 21 lldb::addr_t section_offset, lldb::addr_t byte_size, in LineEntry() argument 26 : range(section_sp, section_offset, byte_size), file(_file), in LineEntry()
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | LineEntry.h | 26 LineEntry(const lldb::SectionSP §ion_sp, lldb::addr_t section_offset,
|
| H A D | ObjectFile.h | 667 lldb::offset_t section_offset, void *dst,
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ObjectFileELF.h | 143 lldb::offset_t section_offset, void *dst,
|
| H A D | ObjectFileELF.cpp | 3344 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument 3348 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData() 3352 return ObjectFile::ReadSectionData(section, section_offset, dst, dst_len); in ReadSectionData() 3358 return data.CopyData(section_offset, dst_len, dst); in ReadSectionData()
|