Lines Matching defs:uc
91 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) {
92 __unw_init_local(cursor, uc);
191 unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) {
192 __unw_init_local(cursor, uc);
197 // uc is initialized by __unw_getcontext in the parent frame. The first stack
335 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor,
338 __unw_init_local(cursor, uc);
340 // uc is initialized by __unw_getcontext in the parent frame. The first stack
449 unw_context_t uc;
451 __unw_getcontext(&uc);
459 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, &cursor, exception_object);
464 return unwind_phase2(&uc, &cursor, exception_object);
483 unw_context_t uc;
485 __unw_getcontext(&uc);
488 unwind_phase2_forced(&uc, &cursor, exception_object,
492 unwind_phase2(&uc, &cursor, exception_object);
508 unw_context_t uc;
510 __unw_getcontext(&uc);
518 return unwind_phase2_forced(&uc, &cursor, exception_object, stop, stop_parameter);