Home | History | Annotate | Download | only in src

Lines Matching full:frameinfo

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