Lines Matching refs:uc
75 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() argument
76 __unw_init_local(cursor, uc); in unwind_phase1()
171 unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase2() argument
172 __unw_init_local(cursor, uc); in unwind_phase2()
290 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor, in unwind_phase2_forced() argument
293 __unw_init_local(cursor, uc); in unwind_phase2_forced()
403 unw_context_t uc; in _Unwind_RaiseException() local
405 __unw_getcontext(&uc); in _Unwind_RaiseException()
413 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, &cursor, exception_object); in _Unwind_RaiseException()
418 return unwind_phase2(&uc, &cursor, exception_object); in _Unwind_RaiseException()
437 unw_context_t uc; in _Unwind_Resume() local
439 __unw_getcontext(&uc); in _Unwind_Resume()
442 unwind_phase2_forced(&uc, &cursor, exception_object, in _Unwind_Resume()
446 unwind_phase2(&uc, &cursor, exception_object); in _Unwind_Resume()
462 unw_context_t uc; in _Unwind_ForcedUnwind() local
464 __unw_getcontext(&uc); in _Unwind_ForcedUnwind()
472 return unwind_phase2_forced(&uc, &cursor, exception_object, stop, stop_parameter); in _Unwind_ForcedUnwind()