Lines Matching defs:frameInfo
114 unw_proc_info_t frameInfo;
116 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
132 (frameInfo.start_ip + offset > frameInfo.end_ip))
139 (void *)exception_object, pc, frameInfo.start_ip, functionName,
140 frameInfo.lsda, frameInfo.handler);
146 if (frameInfo.handler != 0) {
148 (_Unwind_Personality_Fn)(uintptr_t)(frameInfo.handler);
229 unw_proc_info_t frameInfo;
231 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
247 (frameInfo.start_ip + offset > frameInfo.end_ip))
252 (void *)exception_object, frameInfo.start_ip,
253 functionName, sp, frameInfo.lsda,
254 frameInfo.handler);
274 if (frameInfo.handler != 0) {
276 (_Unwind_Personality_Fn)(uintptr_t)(frameInfo.handler);
347 unw_proc_info_t frameInfo;
348 if (__unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
364 (frameInfo.start_ip + offset > frameInfo.end_ip))
369 (void *)exception_object, frameInfo.start_ip, functionName,
370 frameInfo.lsda, frameInfo.handler);
392 if (frameInfo.handler != 0) {
394 (_Unwind_Personality_Fn)(intptr_t)(frameInfo.handler);
526 unw_proc_info_t frameInfo;
528 if (__unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
529 result = (uintptr_t)frameInfo.lsda;
549 unw_proc_info_t frameInfo;
551 if (__unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
552 result = (uintptr_t)frameInfo.start_ip;