Lines Matching refs:frameInfo

52     unw_proc_info_t frameInfo;  in unwind_phase1()  local
54 if (unw_get_proc_info(&cursor1, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
66 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
73 exception_object, (long long)pc, (long long)frameInfo.start_ip, functionName, in unwind_phase1()
74 (long long)frameInfo.lsda, (long long)frameInfo.handler); in unwind_phase1()
79 if (frameInfo.handler != 0) { in unwind_phase1()
81 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1()
146 unw_proc_info_t frameInfo; in unwind_phase2() local
148 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
160 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
165 exception_object, (long long)frameInfo.start_ip, functionName, in unwind_phase2()
166 (long long)sp, (long long)frameInfo.lsda, in unwind_phase2()
167 (long long)frameInfo.handler); in unwind_phase2()
171 if (frameInfo.handler != 0) { in unwind_phase2()
173 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2()
238 unw_proc_info_t frameInfo; in unwind_phase2_forced() local
239 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2_forced()
251 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2_forced()
256 exception_object, frameInfo.start_ip, in unwind_phase2_forced()
257 functionName, frameInfo.lsda, in unwind_phase2_forced()
258 frameInfo.handler); in unwind_phase2_forced()
278 if (frameInfo.handler != 0) { in unwind_phase2_forced()
280 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2_forced()
407 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
409 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
410 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
478 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
480 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
481 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()