Home
last modified time | relevance | path

Searched refs:GetFileOffset (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
DTestWasm.py114 …self.assertEquals(load_address | code_section.GetFileOffset(), code_section.GetLoadAddress(target))
118 …self.assertEquals(load_address | debug_info_section.GetFileOffset(), debug_info_section.GetLoadAdd…
122 …self.assertEquals(load_address | debug_abbrev_section.GetFileOffset(), debug_abbrev_section.GetLoa…
126 …self.assertEquals(load_address | debug_line_section.GetFileOffset(), debug_line_section.GetLoadAdd…
130 …self.assertEquals(load_address | debug_line_section.GetFileOffset(), debug_line_section.GetLoadAdd…
166 …self.assertEquals(load_address | code_section.GetFileOffset(), code_section.GetLoadAddress(target))
210 …self.assertEquals(load_address | code_section.GetFileOffset(), code_section.GetLoadAddress(target))
/external/llvm-project/lldb/source/API/
DSBSection.cpp156 uint64_t SBSection::GetFileOffset() { in GetFileOffset() function in SBSection
157 LLDB_RECORD_METHOD_NO_ARGS(uint64_t, SBSection, GetFileOffset); in GetFileOffset()
165 return objfile->GetFileOffset() + section_sp->GetFileOffset(); in GetFileOffset()
200 objfile->GetFileOffset() + section_sp->GetFileOffset(); in GetSectionData()
314 LLDB_REGISTER_METHOD(uint64_t, SBSection, GetFileOffset, ()); in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
DSBSection.i79 GetFileOffset ();
136 …file_offset = property(GetFileOffset, None, doc='''A read only property that returns the file offs…
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_section.py16 obj.GetFileOffset()
/external/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
DObjectFileJIT.cpp240 ((uint8_t *)(uintptr_t)section->GetFileOffset()) + section_offset; in ReadSectionData()
252 const void *src = (void *)(uintptr_t)section->GetFileOffset(); in ReadSectionData()
/external/llvm-project/lldb/include/lldb/API/
DSBSection.h47 uint64_t GetFileOffset();
/external/llvm-project/lldb/source/Plugins/JITLoader/GDB/
DJITLoaderGDB.cpp258 lower = symbolfile_addr + section_sp->GetFileOffset(); in updateSectionLoadAddress()
260 section_sp->GetFileOffset()); in updateSectionLoadAddress()
/external/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
DObjectContainerBSDArchive.h145 lldb::offset_t GetFileOffset() const { return m_file_offset; } in GetFileOffset() function
DObjectContainerBSDArchive.cpp214 pos->second->GetFileOffset() != file_offset) in FindCachedArchive()
/external/llvm-project/lldb/include/lldb/Core/
DSection.h140 lldb::offset_t GetFileOffset() const { return m_file_offset; } in GetFileOffset() function
/external/llvm-project/lldb/source/Symbol/
DObjectFile.cpp526 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
573 return GetData(section->GetFileOffset(), section->GetFileSize(), in ReadSectionData()
/external/llvm-project/lldb/include/lldb/Symbol/
DObjectFile.h281 virtual lldb::addr_t GetFileOffset() const { return m_file_offset; } in GetFileOffset() function
/external/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
DObjectFileWasm.cpp370 section_sp, load_address | section_sp->GetFileOffset())) { in SetLoadAddress()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderDarwin.cpp670 module_spec.SetObjectOffset(objfile->GetFileOffset() + in AddModulesUsingImageInfos()
671 commpage_section->GetFileOffset()); in AddModulesUsingImageInfos()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp2603 data_buffer_sp->GetBytes() + rel_section->GetFileOffset() + in ApplyRelocations()
2630 data_buffer_sp->GetBytes() + rel_section->GetFileOffset() + in ApplyRelocations()
2683 if (GetData(rel->GetFileOffset(), rel->GetFileSize(), rel_data) && in RelocateDebugSections()
2684 GetData(symtab->GetFileOffset(), symtab->GetFileSize(), symtab_data) && in RelocateDebugSections()
2685 GetData(debug->GetFileOffset(), debug->GetFileSize(), debug_data)) { in RelocateDebugSections()
/external/llvm-project/lldb/source/Plugins/Process/mach-core/
DProcessMachCore.cpp239 FileRange file_range(section->GetFileOffset(), section->GetFileSize()); in DoLoadCore()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DDecoder.cpp408 section.GetLoadAddress(sbtarget), section.GetFileOffset(), in GetTargetModulesInfo()
/external/llvm-project/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp164 sect_sp->GetObjectFile()->GetData(sect_sp->GetFileOffset(), read_size, data); in HashElfTextSection()
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp1729 segment->GetFileOffset(); in ProcessSegmentCommand()
2311 const addr_t linkedit_file_offset = linkedit_section_sp->GetFileOffset(); in ParseSymtab()
2381 lldb::addr_t linkedit_offset = linkedit_section_sp->GetFileOffset(); in ParseSymtab()
6059 if (section->GetFileOffset() == 0 && SectionIsLoadable(section)) in GetMachHeaderSection()
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp537 rva = sect->GetFileOffset() + addr.GetOffset(); in ReadImageDataByRVA()