/external/libunwind/src/unwind/ |
SetIP.c | 31 unw_set_reg (&context->cursor, UNW_REG_IP, new_value);
|
SetGR.c | 38 unw_set_reg (&context->cursor, index, new_value); 42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
|
/external/libunwind/src/mi/ |
Gset_reg.c | 29 unw_set_reg (unw_cursor_t *cursor, int regnum, unw_word_t valp) function
|
/external/libunwind/src/setjmp/ |
siglongjmp.c | 102 if (unw_set_reg (&c, UNW_REG_EH + 2, wp[JB_MASK]) < 0 104 && unw_set_reg (&c, UNW_REG_EH + 3, wp[JB_MASK + 1]) < 0)) 107 if (unw_set_reg (&c, UNW_REG_EH + 2, &wp[JB_MASK]) < 0) 115 if (unw_set_reg (&c, UNW_REG_EH + 0, wp[JB_RP]) < 0 116 || unw_set_reg (&c, UNW_REG_EH + 1, val) < 0 117 || unw_set_reg (&c, UNW_REG_IP, (unw_word_t) (uintptr_t) cont))
|
longjmp.c | 87 if (unw_set_reg (&c, UNW_REG_EH + 0, wp[JB_RP]) < 0 88 || unw_set_reg (&c, UNW_REG_EH + 1, val) < 0 89 || unw_set_reg (&c, UNW_REG_IP,
|
/external/libunwind/tests/ |
test-static-link-gen.c | 38 (void *) &unw_set_reg,
|
test-static-link-loc.c | 56 (void *) &unw_set_reg,
|
Gia64-test-readonly.c | 65 if ((ret = unw_set_reg (&c, UNW_IA64_IP, 99)) != -UNW_EREADONLYREG) 66 panic ("%s: unw_set_reg (ip) returned %d instead of %d\n", 68 if ((ret = unw_set_reg (&c, UNW_IA64_AR_LC, 99)) != -UNW_EREADONLYREG) 69 panic ("%s: unw_set_reg (ar.lc) returned %d instead of %d\n",
|
ia64-test-sig.c | 72 if (unw_set_reg (&cursor2, UNW_REG_IP, ip) < 0)
|
Gia64-test-rbs.c | 113 || unw_set_reg (&c, UNW_REG_IP, (unw_word_t) &resumption_point_label) < 0 114 || unw_set_reg (&c, UNW_REG_EH + 0, 0) /* ret val */ 115 || unw_set_reg (&c, UNW_REG_EH + 1, ip))
|
Gia64-test-nat.c | 526 if ((ret = unw_set_reg (c, UNW_IA64_PR, vals[0])) < 0)
|
/external/libunwind/include/ |
libunwind-common.h.in | 220 #define unw_set_reg UNW_OBJ(set_reg) 247 extern int unw_set_reg (unw_cursor_t *, int, unw_word_t);
|
libunwind-common.h | 253 #define unw_set_reg UNW_OBJ(set_reg) macro 282 extern int unw_set_reg (unw_cursor_t *, int, unw_word_t);
|
/external/libunwind_llvm/src/ |
UnwindLevel1-gcc-ext.c | 95 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(long) pc); 193 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(long) pc);
|
UnwindLevel1.c | 482 unw_set_reg(cursor, index, value); 503 unw_set_reg(cursor, UNW_REG_IP, value);
|
libunwind.cpp | 174 _LIBUNWIND_EXPORT int unw_set_reg(unw_cursor_t *cursor, unw_regnum_t regNum, function 176 _LIBUNWIND_TRACE_API("unw_set_reg(cursor=%p, regNum=%d, value=0x%llX)\n",
|
Unwind-EHABI.cpp | 583 unw_set_reg(&cursor2, UNW_REG_IP, 802 return unw_set_reg(cursor, (unw_regnum_t)(UNW_ARM_R0 + regno), 809 return unw_set_reg(cursor, (unw_regnum_t)(UNW_ARM_WC0 + regno), [all...] |
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
UnwindLevel1-gcc-ext.c | 94 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(long) pc); 204 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(long) pc);
|
UnwindLevel1.c | 513 unw_set_reg(cursor, index, value); 534 unw_set_reg(cursor, UNW_REG_IP, value);
|
libunwind.cpp | 173 _LIBUNWIND_EXPORT int unw_set_reg(unw_cursor_t *cursor, unw_regnum_t regNum, function 175 _LIBUNWIND_TRACE_API("unw_set_reg(cursor=%p, regNum=%d, value=0x%llX)\n",
|
Unwind-EHABI.cpp | 574 unw_set_reg(&cursor2, UNW_REG_IP, 796 return unw_set_reg(cursor, (unw_regnum_t)(UNW_ARM_R0 + regno), 803 return unw_set_reg(cursor, (unw_regnum_t)(UNW_ARM_WC0 + regno), [all...] |
/external/libunwind_llvm/include/ |
libunwind.h | 93 extern int unw_set_reg(unw_cursor_t *, unw_regnum_t, unw_word_t) LIBUNWIND_AVAIL;
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/ |
libunwind.h | 93 extern int unw_set_reg(unw_cursor_t *, unw_regnum_t, unw_word_t) LIBUNWIND_AVAIL;
|