Lines Matching refs:exception_object

230                      _Unwind_Exception *exception_object,  in unwind_phase2_forced()  argument
243 (void *)exception_object); in unwind_phase2_forced()
259 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
267 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
271 (void *)exception_object, stopResult); in unwind_phase2_forced()
275 (void *)exception_object); in unwind_phase2_forced()
285 (void *)exception_object, (void *)(uintptr_t)p); in unwind_phase2_forced()
287 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
294 (void *)exception_object); in unwind_phase2_forced()
301 (void *)exception_object); in unwind_phase2_forced()
310 (void *)exception_object, personalityResult); in unwind_phase2_forced()
320 (void *)exception_object); in unwind_phase2_forced()
323 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
333 _Unwind_RaiseException(_Unwind_Exception *exception_object) { in _Unwind_RaiseException() argument
335 (void *)exception_object); in _Unwind_RaiseException()
339 memset(exception_object->private_, 0, sizeof(exception_object->private_)); in _Unwind_RaiseException()
343 RaiseException(STATUS_GCC_THROW, 0, 1, (ULONG_PTR *)&exception_object); in _Unwind_RaiseException()
362 _Unwind_Resume(_Unwind_Exception *exception_object) { in _Unwind_Resume() argument
363 _LIBUNWIND_TRACE_API("_Unwind_Resume(ex_obj=%p)", (void *)exception_object); in _Unwind_Resume()
365 if (exception_object->private_[0] != 0) { in _Unwind_Resume()
369 unwind_phase2_forced(&uc, exception_object, in _Unwind_Resume()
370 (_Unwind_Stop_Fn) exception_object->private_[0], in _Unwind_Resume()
371 (void *)exception_object->private_[4]); in _Unwind_Resume()
384 ms_exc.ExceptionInformation[0] = (ULONG_PTR)exception_object; in _Unwind_Resume()
385 ms_exc.ExceptionInformation[1] = exception_object->private_[1]; in _Unwind_Resume()
386 ms_exc.ExceptionInformation[2] = exception_object->private_[2]; in _Unwind_Resume()
387 ms_exc.ExceptionInformation[3] = exception_object->private_[3]; in _Unwind_Resume()
388 RtlUnwindEx((PVOID)exception_object->private_[1], in _Unwind_Resume()
389 (PVOID)exception_object->private_[2], &ms_exc, in _Unwind_Resume()
390 exception_object, &ms_ctx, &hist); in _Unwind_Resume()
401 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, in _Unwind_ForcedUnwind() argument
404 (void *)exception_object, (void *)(uintptr_t)stop); in _Unwind_ForcedUnwind()
410 exception_object->private_[0] = (uintptr_t) stop; in _Unwind_ForcedUnwind()
411 exception_object->private_[4] = (uintptr_t) stop_parameter; in _Unwind_ForcedUnwind()
414 return unwind_phase2_forced(&uc, exception_object, stop, stop_parameter); in _Unwind_ForcedUnwind()