Lines Matching refs:frameInfo

432     unw_proc_info_t frameInfo;  in unwind_phase1()  local
434 if (unw_get_proc_info(&cursor1, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
446 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
453 exception_object, (long long)pc, (long long)frameInfo.start_ip, in unwind_phase1()
454 functionName, (long long)frameInfo.lsda, in unwind_phase1()
455 (long long)frameInfo.handler); in unwind_phase1()
460 if (frameInfo.handler != 0) { in unwind_phase1()
462 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1()
467 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1()
469 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase1()
470 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1()
559 unw_proc_info_t frameInfo; in unwind_phase2() local
561 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
573 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
578 exception_object, (long long)frameInfo.start_ip, functionName, in unwind_phase2()
579 (long long)sp, (long long)frameInfo.lsda, in unwind_phase2()
580 (long long)frameInfo.handler); in unwind_phase2()
584 if (frameInfo.handler != 0) { in unwind_phase2()
586 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2()
589 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase2()
591 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase2()
592 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase2()
710 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
712 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
713 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
931 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
933 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
934 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()