Home
last modified time | relevance | path

Searched refs:m_offset (Results 1 – 25 of 36) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DAddress.h128 : m_section_wp(rhs.m_section_wp), m_offset(rhs.m_offset) {} in Address()
143 m_offset(offset) { in Address()
180 m_offset = LLDB_INVALID_ADDRESS; in Clear()
319 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
345 bool IsValid() const { return m_offset != LLDB_INVALID_ADDRESS; } in IsValid()
439 bool changed = m_offset != offset; in SetOffset()
440 m_offset = offset; in SetOffset()
446 m_offset = addr; in SetRawAddress()
450 if (m_offset != LLDB_INVALID_ADDRESS) { in Slide()
451 m_offset += offset; in Slide()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.cpp18 : m_offset(DW_INVALID_OFFSET), m_next_offset(DW_INVALID_OFFSET) {} in DWARFDebugArangeSet()
21 m_offset = DW_INVALID_OFFSET; in Clear()
36 m_offset = *offset_ptr; in extract()
82 if (!data.ValidOffset(m_offset + sizeof(m_header.length) + m_header.length - in extract()
95 const uint32_t header_size = *offset_ptr - m_offset; in extract()
101 *offset_ptr = m_offset + first_tuple_offset; in extract()
145 m_offset, num_terminators); in extract()
H A DDWARFDebugAbbrev.h29 DWARFAbbreviationDeclarationSet() : m_offset(DW_INVALID_OFFSET), m_decls() {} in DWARFAbbreviationDeclarationSet()
32 : m_offset(offset), m_idx_offset(idx_offset), m_decls() {} in DWARFAbbreviationDeclarationSet()
35 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
52 dw_offset_t m_offset;
H A DDWARFDebugInfoEntry.h39 : m_offset(DW_INVALID_OFFSET), m_sibling_idx(0), m_has_children(false) {} in DWARFDebugInfoEntry()
41 explicit operator bool() const { return m_offset != DW_INVALID_OFFSET; }
118 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
168 dw_offset_t m_offset; // Offset within the .debug_info/.debug_types variable
H A DDWARFDebugArangeSet.h44 void SetOffset(uint32_t offset) { m_offset = offset; } in SetOffset()
60 dw_offset_t m_offset; variable
H A DDWARFDebugInfoEntry.cpp44 m_offset = *offset_ptr; in Extract()
67 m_offset, (unsigned)abbr_idx); in Extract()
198 m_offset, (unsigned)form); in Extract()
199 *offset_ptr = m_offset; in Extract()
844 return m_offset == rhs.m_offset && m_parent_idx == rhs.m_parent_idx && in operator ==()
H A DDWARFUnit.h42 dw_offset_t m_offset = 0; variable
60 dw_offset_t GetOffset() const { return m_offset; } in GetOffset()
76 uint32_t GetNextUnitOffset() const { return m_offset + m_length + 4; } in GetNextUnitOffset()
H A DDWARFDebugAbbrev.cpp27 m_offset = begin_offset; in extract()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DAddress.cpp233 Address::Address(lldb::addr_t abs_addr) : m_section_wp(), m_offset(abs_addr) {} in Address()
243 m_offset = rhs.m_offset; in operator =()
256 m_offset = file_addr - section_sp->GetFileAddress(); in ResolveAddressUsingFileSections()
261 m_offset = file_addr; in ResolveAddressUsingFileSections()
301 return sect_file_addr + m_offset; in GetFileAddress()
308 return m_offset; in GetFileAddress()
320 return sect_load_addr + m_offset; in GetLoadAddress()
329 return m_offset; in GetLoadAddress()
362 m_offset = target->GetCallableLoadAddress(m_offset, GetAddressClass()); in SetCallableLoadAddress()
386 m_offset = target->GetOpcodeLoadAddress(m_offset, addr_class); in SetOpcodeLoadAddress()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Expression/
H A DMaterializer.cpp154 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
206 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize()
212 (uint64_t)process_address + m_offset, in Dematerialize()
353 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog()
444 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
607 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize()
687 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog()
932 const lldb::addr_t load_addr = process_address + m_offset; in Materialize()
1000 const lldb::addr_t load_addr = process_address + m_offset; in Dematerialize()
1107 const lldb::addr_t load_addr = process_address + m_offset; in DumpToLog()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Expression/
H A DMaterializer.h133 uint32_t GetOffset() { return m_offset; } in GetOffset()
135 void SetOffset(uint32_t offset) { m_offset = offset; } in SetOffset()
140 uint32_t m_offset = 0; variable
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DObjectContainer.h75 virtual lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
137 lldb::addr_t m_offset; variable
H A DUnwindPlan.h335 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
337 void SetOffset(lldb::addr_t offset) { m_offset = offset; } in SetOffset()
339 void SlideOffset(lldb::addr_t offset) { m_offset += offset; } in SlideOffset()
387 lldb::addr_t m_offset = 0; // Offset into the function for this row variable
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp68 : m_breakpoint(bkpt), m_offset(offset), SubclassID(resolverTy) {} in BreakpointResolver()
160 options_dict_sp->AddIntegerItem(GetKey(OptionNames::Offset), m_offset); in WrapOptionsDict()
340 loc_addr.Slide(m_offset); in AddLocation()
351 m_offset = offset; in SetOffset()
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h78 lldb::addr_t GetOffset() const { return m_offset; } in GetOffset()
222 lldb::addr_t m_offset; // A random offset the user asked us to add to any variable
/openbsd-src/gnu/llvm/lldb/source/Plugins/TraceExporter/common/
H A DTraceHTR.h105 : m_offset(offset), m_size(size), m_metadata(metadata) {} in HTRBlock()
128 size_t m_offset;
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMemory.cpp53 : m_num_per_line(1, 1), m_offset(0, 0), in OptionGroupReadMemory()
93 error = m_offset.SetValueFromString(option_value); in SetOptionValue()
107 m_offset.Clear(); in OptionParsingStarting()
272 m_view_as_type.OptionWasSet() || m_offset.OptionWasSet() || in AnyOptionWasSet()
280 OptionValueUInt64 m_offset; member in OptionGroupReadMemory
662 addr = addr + (*size * m_memory_options.m_offset.GetCurrentValue()); in DoExecute()
902 OptionGroupFindMemory() : m_count(1), m_offset(0) {} in OptionGroupFindMemory()
930 if (m_offset.SetValueFromString(option_value).Fail()) in SetOptionValue()
949 OptionValueUInt64 m_offset; member in CommandObjectMemoryFind::OptionGroupFindMemory
1140 found_location + m_memory_options.m_offset.GetCurrentValue(), in DoExecute()
[all …]
H A DCommandObjectPlatform.cpp603 fd, m_options.m_offset, &buffer[0], m_options.m_count, error); in DoExecute()
633 if (option_arg.getAsInteger(0, m_offset)) in SetOptionValue()
650 m_offset = 0; in OptionParsingStarting()
660 uint32_t m_offset; member in CommandObjectPlatformFRead::CommandOptions
698 platform_sp->WriteFile(fd, m_options.m_offset, &m_options.m_data[0], in DoExecute()
728 if (option_arg.getAsInteger(0, m_offset)) in SetOptionValue()
743 m_offset = 0; in OptionParsingStarting()
753 uint32_t m_offset; member in CommandObjectPlatformFWrite::CommandOptions
/openbsd-src/usr.bin/mail/
H A Dfio.c102 this.m_offset = 0; in setptr()
136 this.m_offset = offsetof(offset); in setptr()
262 if (fseek(itf, (long)positionof(mp->m_block, mp->m_offset), SEEK_SET) in setinput()
H A Ddef.h74 int m_offset; /* offset in block of message */ member
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DObjectContainer.cpp26 m_offset(file_offset), m_length(length) { in ObjectContainer()
H A DUnwindPlan.cpp220 m_offset = 0; in Clear()
355 return m_offset == rhs.m_offset && m_cfa_value == rhs.m_cfa_value && in operator ==()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp109 .GetSyntheticChildAtOffset(_indexes_id.m_offset, in Update()
114 _length_id.m_offset, m_uint_star_type, true)); in Update()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.cpp213 : ObjectFile::MapFileData(m_file, header_and_lc_size, m_offset); in ParseHeader()
287 return ObjectFile::FindPlugin(module_sp, file, m_offset + entry->fileoff, in GetObjectFile()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.h171 lldb::offset_t m_offset = member

12