• Home
  • Raw
  • Download

Lines Matching refs:frameInfo

455     unw_proc_info_t frameInfo;  in unwind_phase1()  local
456 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
471 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
479 frameInfo.start_ip, functionName, in unwind_phase1()
480 frameInfo.lsda, frameInfo.handler); in unwind_phase1()
485 if (frameInfo.handler != 0) { in unwind_phase1()
487 (_Unwind_Personality_Fn)(long)(frameInfo.handler); in unwind_phase1()
493 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1()
495 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase1()
496 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1()
573 unw_proc_info_t frameInfo; in unwind_phase2() local
575 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
590 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
595 static_cast<void *>(exception_object), frameInfo.start_ip, in unwind_phase2()
596 functionName, sp, frameInfo.lsda, in unwind_phase2()
597 frameInfo.handler); in unwind_phase2()
601 if (frameInfo.handler != 0) { in unwind_phase2()
603 (_Unwind_Personality_Fn)(long)(frameInfo.handler); in unwind_phase2()
606 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase2()
608 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase2()
609 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase2()
731 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
733 if (__unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
734 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
973 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
975 if (__unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
976 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()