Searched refs:cursor2 (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | UnwindLevel1.c | 124 unw_cursor_t cursor2; in unwind_phase2() local 125 unw_init_local(&cursor2, uc); in unwind_phase2() 135 int stepResult = unw_step(&cursor2); in unwind_phase2() 151 unw_get_reg(&cursor2, UNW_REG_SP, &sp); in unwind_phase2() 152 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2() 164 if ((unw_get_proc_name(&cursor2, functionBuf, sizeof(functionBuf), in unwind_phase2() 187 (struct _Unwind_Context *)(&cursor2)); in unwind_phase2() 208 unw_get_reg(&cursor2, UNW_REG_IP, &pc); in unwind_phase2() 209 unw_get_reg(&cursor2, UNW_REG_SP, &sp); in unwind_phase2() 215 unw_resume(&cursor2); in unwind_phase2() [all …]
|
D | Unwind-EHABI.cpp | 551 unw_cursor_t cursor2; in unwind_phase2() local 552 unw_init_local(&cursor2, uc); in unwind_phase2() 574 unw_set_reg(&cursor2, UNW_REG_IP, in unwind_phase2() 579 int stepResult = unw_step(&cursor2); in unwind_phase2() 595 unw_get_reg(&cursor2, UNW_REG_SP, &sp); in unwind_phase2() 596 if (unw_get_proc_info(&cursor2, &frameInfo) != UNW_ESUCCESS) { in unwind_phase2() 608 if ((unw_get_proc_name(&cursor2, functionBuf, sizeof(functionBuf), in unwind_phase2() 624 struct _Unwind_Context *context = (struct _Unwind_Context *)(&cursor2); in unwind_phase2() 653 unw_get_reg(&cursor2, UNW_REG_IP, &pc); in unwind_phase2() 654 unw_get_reg(&cursor2, UNW_REG_SP, &sp); in unwind_phase2() [all …]
|