Lines Matching refs:frameInfo
449 unw_proc_info_t frameInfo; in unwind_phase1() local
450 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
464 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
472 frameInfo.start_ip, functionName, in unwind_phase1()
473 frameInfo.lsda, frameInfo.handler); in unwind_phase1()
478 if (frameInfo.handler != 0) { in unwind_phase1()
480 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1()
486 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1()
488 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase1()
489 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1()
566 unw_proc_info_t frameInfo; in unwind_phase2() local
568 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
582 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
587 static_cast<void *>(exception_object), frameInfo.start_ip, in unwind_phase2()
588 functionName, sp, frameInfo.lsda, in unwind_phase2()
589 frameInfo.handler); in unwind_phase2()
593 if (frameInfo.handler != 0) { in unwind_phase2()
595 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2()
598 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase2()
600 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase2()
601 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase2()
723 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
725 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
726 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
958 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
960 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
961 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()