• Home
  • Raw
  • Download

Lines Matching refs:frameInfo

61     unw_proc_info_t frameInfo;  in unwind_phase1()  local
63 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1()
78 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1()
85 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
86 frameInfo.lsda, frameInfo.handler); in unwind_phase1()
91 if (frameInfo.handler != 0) { in unwind_phase1()
93 (_Unwind_Personality_Fn)(uintptr_t)(frameInfo.handler); in unwind_phase1()
160 unw_proc_info_t frameInfo; in unwind_phase2() local
162 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2()
177 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2()
182 (void *)exception_object, frameInfo.start_ip, in unwind_phase2()
183 functionName, sp, frameInfo.lsda, in unwind_phase2()
184 frameInfo.handler); in unwind_phase2()
188 if (frameInfo.handler != 0) { in unwind_phase2()
190 (_Unwind_Personality_Fn)(uintptr_t)(frameInfo.handler); in unwind_phase2()
253 unw_proc_info_t frameInfo; in unwind_phase2_forced() local
254 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2_forced()
268 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2_forced()
273 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
274 frameInfo.lsda, frameInfo.handler); in unwind_phase2_forced()
294 if (frameInfo.handler != 0) { in unwind_phase2_forced()
296 (_Unwind_Personality_Fn)(intptr_t)(frameInfo.handler); in unwind_phase2_forced()
428 unw_proc_info_t frameInfo; in _Unwind_GetLanguageSpecificData() local
430 if (__unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetLanguageSpecificData()
431 result = (uintptr_t)frameInfo.lsda; in _Unwind_GetLanguageSpecificData()
449 unw_proc_info_t frameInfo; in _Unwind_GetRegionStart() local
451 if (__unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS) in _Unwind_GetRegionStart()
452 result = (uintptr_t)frameInfo.start_ip; in _Unwind_GetRegionStart()