• Home
  • Raw
  • Download

Lines Matching refs:frameInfo

58     unw_proc_info_t frameInfo;  in unwind_phase1()  local
60 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
74 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
81 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
82 frameInfo.lsda, frameInfo.handler); in unwind_phase1()
87 if (frameInfo.handler != 0) { in unwind_phase1()
89 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1()
155 unw_proc_info_t frameInfo; in unwind_phase2() local
157 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
171 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
176 (void *)exception_object, frameInfo.start_ip, in unwind_phase2()
177 functionName, sp, frameInfo.lsda, in unwind_phase2()
178 frameInfo.handler); in unwind_phase2()
182 if (frameInfo.handler != 0) { in unwind_phase2()
184 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2()
247 unw_proc_info_t frameInfo; in unwind_phase2_forced() local
248 if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2_forced()
262 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2_forced()
267 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
268 frameInfo.lsda, frameInfo.handler); in unwind_phase2_forced()
288 if (frameInfo.handler != 0) { in unwind_phase2_forced()
290 (__personality_routine)(long)(frameInfo.handler); in unwind_phase2_forced()
422 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
424 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
425 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
443 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
445 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
446 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()