Home
last modified time | relevance | path

Searched refs:object_offset (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBModuleSpec.cpp159 void SBModuleSpec::SetObjectOffset(uint64_t object_offset) { in SetObjectOffset() argument
160 LLDB_INSTRUMENT_VA(this, object_offset); in SetObjectOffset()
162 m_opaque_up->SetObjectOffset(object_offset); in SetObjectOffset()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModuleSpec.h82 void SetObjectOffset(uint64_t object_offset);
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h109 void SetObjectOffset(uint64_t object_offset) { in SetObjectOffset() argument
110 m_object_offset = object_offset; in SetObjectOffset()
H A DModule.h121 /// \param[in] object_offset
127 ConstString object_name = ConstString(), lldb::offset_t object_offset = 0,
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp884 lldb::offset_t object_offset = m_body_offset + m_header->objtoff; in ParseObjects() local
889 while (object_offset < object_offset_end) { in ParseObjects()
890 const uint32_t type_uid = m_data.GetU32(&object_offset); in ParseObjects()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp236 ConstString object_name, lldb::offset_t object_offset, in Module() argument
240 m_object_offset(object_offset), m_object_mod_time(object_mod_time), in Module()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp178 ConstString object_name, off_t object_offset, in DebugMapModule() argument
180 : Module(file_spec, arch, object_name, object_offset, object_mod_time), in DebugMapModule()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp3233 uint64_t object_offset = Sec.offset + sect_offset; in GuessCstringPointer() local
3237 if (object_offset < object_size) { in GuessCstringPointer()
3238 const char *name = object_addr + object_offset; in GuessCstringPointer()
3254 uint64_t object_offset = Sec.offset + sect_offset; in GuessCstringPointer() local
3258 if (object_offset < object_size) { in GuessCstringPointer()
3259 const char *name = object_addr + object_offset; in GuessCstringPointer()
3443 uint64_t object_offset = Sec.offset + sect_offset; in GuessPointerPointer() local
3447 if (object_offset < object_size) { in GuessPointerPointer()
3449 memcpy(&pointer_value, object_addr + object_offset, in GuessPointerPointer()
3461 memcpy(&pointer_value, object_addr + object_offset + 8, in GuessPointerPointer()