Lines Matching refs:frameInfo

59     unw_proc_info_t frameInfo;  in unwind_phase1()  local
61 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
75 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
82 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
83 frameInfo.lsda, frameInfo.handler); in unwind_phase1()
88 if (frameInfo.handler != 0) { in unwind_phase1()
90 (__personality_routine)(uintptr_t)(frameInfo.handler); in unwind_phase1()
156 unw_proc_info_t frameInfo; in unwind_phase2() local
158 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
172 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
177 (void *)exception_object, frameInfo.start_ip, in unwind_phase2()
178 functionName, sp, frameInfo.lsda, in unwind_phase2()
179 frameInfo.handler); in unwind_phase2()
183 if (frameInfo.handler != 0) { in unwind_phase2()
185 (__personality_routine)(uintptr_t)(frameInfo.handler); in unwind_phase2()
248 unw_proc_info_t frameInfo; in unwind_phase2_forced() local
249 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2_forced()
263 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2_forced()
268 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
269 frameInfo.lsda, frameInfo.handler); in unwind_phase2_forced()
289 if (frameInfo.handler != 0) { in unwind_phase2_forced()
291 (__personality_routine)(intptr_t)(frameInfo.handler); in unwind_phase2_forced()
423 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
425 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
426 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
444 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
446 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
447 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()