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()
68 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
75 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
76 frameInfo.lsda, frameInfo.handler); in unwind_phase1()
81 if (frameInfo.handler != 0) { in unwind_phase1()
83 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1()
150 unw_proc_info_t frameInfo; in unwind_phase2() local
152 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
166 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
171 (void *)exception_object, frameInfo.start_ip, in unwind_phase2()
172 functionName, sp, frameInfo.lsda, in unwind_phase2()
173 frameInfo.handler); in unwind_phase2()
177 if (frameInfo.handler != 0) { in unwind_phase2()
179 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2()
243 unw_proc_info_t frameInfo; in unwind_phase2_forced() local
244 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2_forced()
258 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2_forced()
263 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
264 frameInfo.lsda, frameInfo.handler); in unwind_phase2_forced()
284 if (frameInfo.handler != 0) { in unwind_phase2_forced()
286 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2_forced()
415 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
417 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
418 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
436 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
438 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
439 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()