Lines Matching refs:exception_object

234                      _Unwind_Exception *exception_object,  in unwind_phase2_forced()  argument
247 (void *)exception_object); in unwind_phase2_forced()
263 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
271 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
275 (void *)exception_object, stopResult); in unwind_phase2_forced()
279 (void *)exception_object); in unwind_phase2_forced()
289 (void *)exception_object, (void *)(uintptr_t)p); in unwind_phase2_forced()
291 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
298 (void *)exception_object); in unwind_phase2_forced()
305 (void *)exception_object); in unwind_phase2_forced()
314 (void *)exception_object, personalityResult); in unwind_phase2_forced()
324 (void *)exception_object); in unwind_phase2_forced()
327 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
337 _Unwind_RaiseException(_Unwind_Exception *exception_object) { in _Unwind_RaiseException() argument
339 (void *)exception_object); in _Unwind_RaiseException()
343 memset(exception_object->private_, 0, sizeof(exception_object->private_)); in _Unwind_RaiseException()
347 RaiseException(STATUS_GCC_THROW, 0, 1, (ULONG_PTR *)&exception_object); in _Unwind_RaiseException()
366 _Unwind_Resume(_Unwind_Exception *exception_object) { in _Unwind_Resume() argument
367 _LIBUNWIND_TRACE_API("_Unwind_Resume(ex_obj=%p)", (void *)exception_object); in _Unwind_Resume()
369 if (exception_object->private_[0] != 0) { in _Unwind_Resume()
373 unwind_phase2_forced(&uc, exception_object, in _Unwind_Resume()
374 (_Unwind_Stop_Fn) exception_object->private_[0], in _Unwind_Resume()
375 (void *)exception_object->private_[4]); in _Unwind_Resume()
388 ms_exc.ExceptionInformation[0] = (ULONG_PTR)exception_object; in _Unwind_Resume()
389 ms_exc.ExceptionInformation[1] = exception_object->private_[1]; in _Unwind_Resume()
390 ms_exc.ExceptionInformation[2] = exception_object->private_[2]; in _Unwind_Resume()
391 ms_exc.ExceptionInformation[3] = exception_object->private_[3]; in _Unwind_Resume()
392 RtlUnwindEx((PVOID)exception_object->private_[1], in _Unwind_Resume()
393 (PVOID)exception_object->private_[2], &ms_exc, in _Unwind_Resume()
394 exception_object, &ms_ctx, &hist); in _Unwind_Resume()
405 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, in _Unwind_ForcedUnwind() argument
408 (void *)exception_object, (void *)(uintptr_t)stop); in _Unwind_ForcedUnwind()
414 exception_object->private_[0] = (uintptr_t) stop; in _Unwind_ForcedUnwind()
415 exception_object->private_[4] = (uintptr_t) stop_parameter; in _Unwind_ForcedUnwind()
418 return unwind_phase2_forced(&uc, exception_object, stop, stop_parameter); in _Unwind_ForcedUnwind()