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) {
66 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip))
73 exception_object, (long long)pc, (long long)frameInfo.start_ip, functionName,
74 (long long)frameInfo.lsda, (long long)frameInfo.handler);
79 if (frameInfo.handler != 0) {
81 (__personality_routine)(long)(frameInfo.handler);
146 unw_proc_info_t frameInfo;
148 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) {
160 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip))
165 exception_object, (long long)frameInfo.start_ip, functionName,
166 (long long)sp, (long long)frameInfo.lsda,
167 (long long)frameInfo.handler);
171 if (frameInfo.handler != 0) {
173 (__personality_routine)(long)(frameInfo.handler);
238 unw_proc_info_t frameInfo;
239 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) {
251 UNW_ESUCCESS) || (frameInfo.start_ip + offset > frameInfo.end_ip))
256 exception_object, frameInfo.start_ip,
257 functionName, frameInfo.lsda,
258 frameInfo.handler);
278 if (frameInfo.handler != 0) {
280 (__personality_routine)(long)(frameInfo.handler);
407 unw_proc_info_t frameInfo;
409 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
410 result = (uintptr_t)frameInfo.lsda;
478 unw_proc_info_t frameInfo;
480 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
481 result = (uintptr_t)frameInfo.start_ip;