Lines Matching refs:uc
77 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() argument
78 __unw_init_local(cursor, uc); in unwind_phase1()
173 unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase2() argument
174 __unw_init_local(cursor, uc); in unwind_phase2()
309 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor, in unwind_phase2_forced() argument
312 __unw_init_local(cursor, uc); in unwind_phase2_forced()
423 unw_context_t uc; in _Unwind_RaiseException() local
425 __unw_getcontext(&uc); in _Unwind_RaiseException()
433 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, &cursor, exception_object); in _Unwind_RaiseException()
438 return unwind_phase2(&uc, &cursor, exception_object); in _Unwind_RaiseException()
457 unw_context_t uc; in _Unwind_Resume() local
459 __unw_getcontext(&uc); in _Unwind_Resume()
462 unwind_phase2_forced(&uc, &cursor, exception_object, in _Unwind_Resume()
466 unwind_phase2(&uc, &cursor, exception_object); in _Unwind_Resume()
482 unw_context_t uc; in _Unwind_ForcedUnwind() local
484 __unw_getcontext(&uc); in _Unwind_ForcedUnwind()
492 return unwind_phase2_forced(&uc, &cursor, exception_object, stop, stop_parameter); in _Unwind_ForcedUnwind()