Searched refs:frameInfo (Results 1 – 3 of 3) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | UnwindLevel1.c | 52 unw_proc_info_t frameInfo; in unwind_phase1() local 54 if (unw_get_proc_info(&cursor1, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1() 68 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1() 75 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1() 76 frameInfo.lsda, frameInfo.handler); in unwind_phase1() 81 if (frameInfo.handler != 0) { in unwind_phase1() 83 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1() 150 unw_proc_info_t frameInfo; in unwind_phase2() local 152 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2() 166 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase2() [all …]
|
D | Unwind-EHABI.cpp | 463 unw_proc_info_t frameInfo; in unwind_phase1() local 464 if (unw_get_proc_info(&cursor1, &frameInfo) != UNW_ESUCCESS) { in unwind_phase1() 478 (frameInfo.start_ip + offset > frameInfo.end_ip)) in unwind_phase1() 486 (long long)frameInfo.start_ip, functionName, in unwind_phase1() 487 (long long)frameInfo.lsda, (long long)frameInfo.handler); in unwind_phase1() 492 if (frameInfo.handler != 0) { in unwind_phase1() 494 (__personality_routine)(long)(frameInfo.handler); in unwind_phase1() 500 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1() 502 (_Unwind_EHT_Header *)frameInfo.unwind_info; in unwind_phase1() 503 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1() [all …]
|
D | UnwindLevel1-gcc-ext.c | 128 unw_proc_info_t frameInfo; in _Unwind_Backtrace() local 129 if (unw_get_proc_info(&cursor, &frameInfo) != UNW_ESUCCESS) { in _Unwind_Backtrace() 134 const uint32_t* unwindInfo = (uint32_t *) frameInfo.unwind_info; in _Unwind_Backtrace() 146 ex.pr_cache.fnstart = frameInfo.start_ip; in _Unwind_Backtrace() 148 ex.pr_cache.additional= frameInfo.flags; in _Unwind_Backtrace()
|