• Home
  • Raw
  • Download

Lines Matching refs:uintptr_t

35    bool checkKeyMgrRegisteredFDEs(uintptr_t targetAddr, void *&fde);
51 uintptr_t dwarf_section_length;
53 uintptr_t compact_unwind_section_length;
158 uintptr_t dso_base;
161 uintptr_t dwarf_section;
162 uintptr_t dwarf_section_length;
165 uintptr_t dwarf_index_section;
166 uintptr_t dwarf_index_section_length;
169 uintptr_t compact_unwind_section;
170 uintptr_t compact_unwind_section_length;
173 uintptr_t arm_section;
174 uintptr_t arm_section_length;
184 typedef uintptr_t pint_t;
216 uintptr_t getP(pint_t addr);
231 inline uintptr_t LocalAddressSpace::getP(pint_t addr) { in getP()
390 info.dso_base = (uintptr_t)dyldInfo.mh; in findUnwindSections()
392 info.dwarf_section = (uintptr_t)dyldInfo.dwarf_section; in findUnwindSections()
395 info.compact_unwind_section = (uintptr_t)dyldInfo.compact_unwind_section; in findUnwindSections()
401 info.dwarf_section_length = (uintptr_t)(&__eh_frame_end - &__eh_frame_start); in findUnwindSections()
402 info.dwarf_section = (uintptr_t)(&__eh_frame_start); in findUnwindSections()
406 info.dwarf_index_section = (uintptr_t)(&__eh_frame_hdr_start); in findUnwindSections()
407 info.dwarf_index_section_length = (uintptr_t)(&__eh_frame_hdr_end - &__eh_frame_hdr_start); in findUnwindSections()
415 info.arm_section = (uintptr_t)(&__exidx_start); in findUnwindSections()
416 info.arm_section_length = (uintptr_t)(&__exidx_end - &__exidx_start); in findUnwindSections()
437 info.dso_base = (uintptr_t)mods[i]; in findUnwindSections()
439 uintptr_t begin = pish->VirtualAddress + (uintptr_t)mods[i]; in findUnwindSections()
440 uintptr_t end = begin + pish->Misc.VirtualSize; in findUnwindSections()
466 (uintptr_t)dl_unwind_find_exidx((_Unwind_Ptr)targetAddr, &length); in findUnwindSections()
467 info.arm_section_length = (uintptr_t)length; in findUnwindSections()
474 uintptr_t targetAddr; in findUnwindSections()
518 uintptr_t begin = pinfo->dlpi_addr + phdr->p_vaddr; in findUnwindSections()
523 uintptr_t end = begin + phdr->p_memsz; in findUnwindSections()
531 uintptr_t eh_frame_hdr_start = pinfo->dlpi_addr + phdr->p_vaddr; in findUnwindSections()
556 uintptr_t begin = pinfo->dlpi_addr + phdr->p_vaddr; in findUnwindSections()
557 uintptr_t end = begin + phdr->p_memsz; in findUnwindSections()
561 uintptr_t exidx_start = pinfo->dlpi_addr + phdr->p_vaddr; in findUnwindSections()