Searched refs:cie_id (Results 1 - 4 of 4) sorted by relevance

/external/libunwind/src/dwarf/
H A DGfde.c82 uint32_t cie_id; local
88 if ((ret = dwarf_readu32 (as, a, &addr, &cie_id, arg)) < 0)
90 if (cie_id != expected_id)
92 Debug (1, "Unexpected CIE id %x\n", cie_id);
99 uint64_t cie_id; local
108 if ((ret = dwarf_readu64 (as, a, &addr, &cie_id, arg)) < 0)
110 if (cie_id != expected_id)
112 Debug (1, "Unexpected CIE id %llx\n", (long long) cie_id);
H A DGfind_proc_info-lsb.c389 uint64_t cie_id = 0; local
432 cie_id = cie_id32;
442 dwarf_readu64 (unw_local_addr_space, a, &addr, &cie_id, NULL);
446 /*Debug (1, "CIE/FDE id = %.8x\n", (int) cie_id);*/
448 if (cie_id == id_for_cie)
/external/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp150 const dw_offset_t cie_id = m_cfi_data.GetU32(&offset); local
152 if (length > 0 && ((!m_is_eh_frame && cie_id == UINT32_MAX) || (m_is_eh_frame && cie_id == 0ul)))
342 dw_offset_t cie_id = m_cfi_data.GetU32 (&offset); local
344 if (cie_id == 0 || cie_id == UINT32_MAX)
351 const dw_offset_t cie_offset = current_entry + 4 - cie_id;
367 "error: unable to find CIE at 0x%8.8x for cie_id = 0x%8.8x for entry at 0x%8.8x.\n",
369 cie_id,
/external/elfutils/0.153/src/
H A Dreadelf.c5264 Dwarf_Off cie_id;
5267 cie_id = read_4ubyte_unaligned_inc (dbg, readp);
5268 if (!is_eh_frame && cie_id == DW_CIE_ID_32)
5269 cie_id = DW_CIE_ID_64;
5272 cie_id = read_8ubyte_unaligned_inc (dbg, readp);
5282 if (cie_id == (is_eh_frame ? 0 : DW_CIE_ID_64))
5320 offset, (uint64_t) unit_length, (uint64_t) cie_id,
5414 ? start - (ptrdiff_t) cie_id == cie->cie_offset
5415 : (ptrdiff_t) cie_id == cie->cie_offset)
5444 cie->cie_offset, (uint64_t) cie_id,
[all...]

Completed in 3761 milliseconds