/external/libunwind/src/x86_64/ |
Gtrace.c | 207 that location, performs one unw_step(), and fills F with what 235 adjustment because unw_step will redo it - and force RIP, RBP 248 && likely((ret = unw_step (cursor)) >= 0)) 251 /* If unw_step() stopped voluntarily, remember that, even if it 256 to unw_step() loop wouldn't produce any better result. */ 343 The caller should fall back to a unw_step() loop if this function 365 stop short of outermost frame if unw_step() loop would also do so, 388 while ((ret = unw_step(&cur)) > 0 && depth < 128) 435 back into unw_step(). */ 467 what unw_step() previously said, in potentially bogus frames. * [all...] |
/external/libunwind/tests/ |
Gperf-simple.c | 73 ret = unw_step (&cursor); 75 panic ("unw_step() failed\n"); 132 printf ("%s: unw_step : 1st=%9.3f min=%9.3f avg=%9.3f nsec\n", label,
|
Gtest-nomalloc.c | 71 ret = unw_step (&cursor);
|
test-static-link-loc.c | 85 return unw_step (&c);
|
Gia64-test-rbs.c | 109 if ((ret = unw_step (&c)) < 0) 110 panic ("unw_step (ret=%d)", ret);
|
Gtest-bt.c | 105 ret = unw_step (&cursor); 109 printf ("FAILURE: unw_step() returned %d for ip=%lx\n",
|
test-ptrace.c | 134 ret = unw_step (&c); 138 panic ("FAILURE: unw_step() returned %d for ip=%lx (start ip=%lx)\n",
|
test-coredump-unwind.c | 356 ret = unw_step(&c); 359 error_msg_and_die("FAILURE: unw_step() returned %d", ret);
|
/external/libunwind/src/mi/ |
backtrace.c | 45 while (unw_step (&cursor) > 0)
|
/external/libunwind/doc/ |
NOTES | 34 chain with the unw_step() routine. The frame registers and the 66 while (unw_step (&cursor) > 0);
|
/external/libunwind/src/hppa/ |
Gstep.c | 30 unw_step (unw_cursor_t *cursor) function
|
/external/libunwind/src/ia64/ |
Ginit_local.c | 105 ret = unw_step (cursor);
|
/external/libunwind/src/setjmp/ |
longjmp.c | 97 while (unw_step (&c) > 0);
|
setjmp_i.h | 57 if (unw_step (&tmp) < 0)
|
siglongjmp.c | 124 while (unw_step (&c) > 0);
|
/external/libunwind/src/unwind/ |
RaiseException.c | 56 if (unw_step (&context.cursor) <= 0)
|
unwind-internal.h | 84 ret = unw_step (&context->cursor);
|
/external/libunwind/include/ |
libunwind-common.h.in | 215 #define unw_step UNW_OBJ(step) 241 extern int unw_step (unw_cursor_t *);
|
libunwind-common.h | 237 #define unw_step UNW_OBJ(step) macro 264 extern int unw_step (unw_cursor_t *);
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
Unwind-EHABI.cpp | 418 int stepResult = unw_step(&cursor1); 420 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1(ex_ojb=%p): unw_step() reached " 425 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1(ex_ojb=%p): unw_step failed => " 544 int stepResult = unw_step(&cursor2); 546 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_step() reached " 551 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_step failed => " [all...] |
libunwind.cpp | 219 _LIBUNWIND_EXPORT int unw_step(unw_cursor_t *cursor) { function 220 _LIBUNWIND_TRACE_API("unw_step(cursor=%p)\n", cursor);
|
/external/libcxxabi/src/Unwind/ |
Unwind-EHABI.cpp | 452 int stepResult = unw_step(&cursor1); 454 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1(ex_ojb=%p): unw_step() reached " 459 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1(ex_ojb=%p): unw_step failed => " 577 int stepResult = unw_step(&cursor2); 579 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_step() reached " 584 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_step failed => " [all...] |
libunwind.cpp | 221 _LIBUNWIND_EXPORT int unw_step(unw_cursor_t *cursor) { function 222 _LIBUNWIND_TRACE_API("unw_step(cursor=%p)\n", cursor);
|
/external/chromium_org/third_party/skia/tools/ |
CrashHandler.cpp | 22 while (unw_step(&cursor) > 0) {
|
/external/libunwind/ |
TODO | 92 + man-page for unw_step()
|