Searched defs:cie_offset (Results 1 - 5 of 5) sorted by relevance

/external/libunwind/src/dwarf/
H A DGfde.c244 int32_t cie_offset; local
256 if ((ret = dwarf_reads32 (as, a, &addr, &cie_offset, arg)) < 0)
259 if (is_cie_id (cie_offset, base != 0))
264 cie_addr = base + cie_offset;
270 cie_addr = cie_offset_addr - cie_offset;
274 int64_t cie_offset; local
284 if ((ret = dwarf_reads64 (as, a, &addr, &cie_offset, arg)) < 0)
287 if (is_cie_id (cie_offset, base != 0))
292 cie_addr = base + cie_offset;
298 cie_addr = (unw_word_t) ((uint64_t) cie_offset_addr - cie_offset);
[all...]
/external/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h85 dw_offset_t cie_offset; member in struct:lldb_private::DWARFCallFrameInfo::CIE
96 CIE(dw_offset_t offset) : cie_offset(offset), version (-1), code_align (0),
123 GetCIE(dw_offset_t cie_offset);
144 ParseCIE (const uint32_t cie_offset);
/external/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp127 DWARFCallFrameInfo::GetCIE(dw_offset_t cie_offset) argument
129 cie_map_t::iterator pos = m_cie_map.find(cie_offset);
135 pos->second = ParseCIE (cie_offset);
143 DWARFCallFrameInfo::ParseCIE (const dw_offset_t cie_offset) argument
145 CIESP cie_sp(new CIE(cie_offset));
146 lldb::offset_t offset = cie_offset;
151 const dw_offset_t end_offset = cie_offset + length + 4;
155 // cie.offset = cie_offset;
351 const dw_offset_t cie_offset = current_entry + 4 - cie_id; local
352 const CIE *cie = GetCIE (cie_offset);
391 dw_offset_t cie_offset = m_cfi_data.GetU32 (&offset); local
[all...]
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader.cc2247 uint64 cie_offset) {
2251 filename_.c_str(), offset, section_.c_str(), cie_offset);
2254 void CallFrameInfo::Reporter::BadCIEId(uint64 offset, uint64 cie_offset) { argument
2258 filename_.c_str(), offset, section_.c_str(), cie_offset);
2246 CIEPointerOutOfRange(uint64 offset, uint64 cie_offset) argument
/external/elfutils/src/src/
H A Dreadelf.c5414 ptrdiff_t cie_offset; member in struct:cieinfo
5610 newp->cie_offset = offset;
5626 ? start - (ptrdiff_t) cie_id == cie->cie_offset
5627 : (ptrdiff_t) cie_id == cie->cie_offset)
5669 cie->cie_offset, (uint64_t) cie_id, a);

Completed in 214 milliseconds