HomeSort by relevance Sort by last modified time
    Searched defs:cie_id (Results 1 - 3 of 3) sorted by null

  /external/libunwind/src/dwarf/
Gfde.c 82 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);
Gfind_proc_info-lsb.c 389 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/
DWARFCallFrameInfo.cpp 150 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,
395 // Translate the CIE_id from the eh_frame format, whic
    [all...]

Completed in 199 milliseconds