Home | History | Annotate | Download | only in Unwind

Lines Matching defs:frameInfo

52     unw_proc_info_t frameInfo;
54 if (unw_get_proc_info(&cursor1, &frameInfo) != UNW_ESUCCESS) {
68 (frameInfo.start_ip + offset > frameInfo.end_ip))
75 (void *)exception_object, pc, frameInfo.start_ip, functionName,
76 frameInfo.lsda, frameInfo.handler);
81 if (frameInfo.handler != 0) {
83 (__personality_routine)(long)(frameInfo.handler);
150 unw_proc_info_t frameInfo;
152 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) {
166 (frameInfo.start_ip + offset > frameInfo.end_ip))
171 (void *)exception_object, frameInfo.start_ip,
172 functionName, sp, frameInfo.lsda,
173 frameInfo.handler);
177 if (frameInfo.handler != 0) {
179 (__personality_routine)(long)(frameInfo.handler);
243 unw_proc_info_t frameInfo;
244 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) {
258 (frameInfo.start_ip + offset > frameInfo.end_ip))
263 (void *)exception_object, frameInfo.start_ip, functionName,
264 frameInfo.lsda, frameInfo.handler);
284 if (frameInfo.handler != 0) {
286 (__personality_routine)(long)(frameInfo.handler);
415 unw_proc_info_t frameInfo;
417 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
418 result = (uintptr_t)frameInfo.lsda;
436 unw_proc_info_t frameInfo;
438 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
439 result = (uintptr_t)frameInfo.start_ip;