HomeSort by relevance Sort by last modified time
    Searched refs:unw_context (Results 1 - 2 of 2) sorted by null

  /system/core/libbacktrace/
UnwindCurrent.cpp 44 unw_tdep_context_t* unw_context = reinterpret_cast<unw_tdep_context_t*>(&context_); local
47 unw_context->regs[0] = ucontext->uc_mcontext.arm_r0;
48 unw_context->regs[1] = ucontext->uc_mcontext.arm_r1;
49 unw_context->regs[2] = ucontext->uc_mcontext.arm_r2;
50 unw_context->regs[3] = ucontext->uc_mcontext.arm_r3;
51 unw_context->regs[4] = ucontext->uc_mcontext.arm_r4;
52 unw_context->regs[5] = ucontext->uc_mcontext.arm_r5;
53 unw_context->regs[6] = ucontext->uc_mcontext.arm_r6;
54 unw_context->regs[7] = ucontext->uc_mcontext.arm_r7;
55 unw_context->regs[8] = ucontext->uc_mcontext.arm_r8
    [all...]
backtrace_offline_test.cpp 30 unw_context_t* unw_context = reinterpret_cast<unw_context_t*>(arg); local
31 unw_getcontext(unw_context);
38 unw_context_t unw_context; member in struct:OfflineThreadArg
46 fn_arg->function(GetContextAndExit, &fn_arg->unw_context);
50 static ucontext_t GetUContextFromUnwContext(const unw_context_t& unw_context) {
54 ucontext.uc_mcontext.arm_r0 = unw_context.regs[0];
55 ucontext.uc_mcontext.arm_r1 = unw_context.regs[1];
56 ucontext.uc_mcontext.arm_r2 = unw_context.regs[2];
57 ucontext.uc_mcontext.arm_r3 = unw_context.regs[3];
58 ucontext.uc_mcontext.arm_r4 = unw_context.regs[4]
    [all...]

Completed in 370 milliseconds