• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/libunwind-35.3/src/

Lines Matching defs:frameInfo

63 		unw_proc_info_t frameInfo;
65 if ( unw_get_proc_info(&cursor1, &frameInfo) != UNW_ESUCCESS ) {
74 if ( (unw_get_proc_name(&cursor1, functionName, 512, &offset) != UNW_ESUCCESS) || (frameInfo.start_ip+offset > frameInfo.end_ip) )
79 exception_object, pc, frameInfo.start_ip, functionName, frameInfo.lsda, frameInfo.handler);
83 if ( frameInfo.handler != 0 ) {
84 __personality_routine p = (__personality_routine)(long)(frameInfo.handler);
138 unw_proc_info_t frameInfo;
140 if ( unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS ) {
149 if ( (unw_get_proc_name(&cursor2, functionName, 512, &offset) != UNW_ESUCCESS) || (frameInfo.start_ip+offset > frameInfo.end_ip) )
152 exception_object, frameInfo.start_ip, functionName, sp, frameInfo.lsda, frameInfo.handler);
156 if ( frameInfo.handler != 0 ) {
157 __personality_routine p = (__personality_routine)(long)(frameInfo.handler);
210 unw_proc_info_t frameInfo;
211 if ( unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS ) {
220 if ( (unw_get_proc_name(&cursor2, functionName, 512, &offset) != UNW_ESUCCESS) || (frameInfo.start_ip+offset > frameInfo.end_ip) )
223 exception_object, frameInfo.start_ip, functionName, frameInfo.lsda, frameInfo.handler);
238 if ( frameInfo.handler != 0 ) {
239 __personality_routine p = (__personality_routine)(long)(frameInfo.handler);
351 unw_proc_info_t frameInfo;
353 if ( unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS )
354 result = frameInfo.lsda;
418 unw_proc_info_t frameInfo;
420 if ( unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS )
421 result = frameInfo.start_ip;