Lines Matching refs:exception_object
230 _Unwind_Exception *exception_object, in unwind_phase2_forced() argument
243 (void *)exception_object); in unwind_phase2_forced()
260 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
269 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
273 (void *)exception_object, stopResult); in unwind_phase2_forced()
277 (void *)exception_object); in unwind_phase2_forced()
287 (void *)exception_object, (void *)(uintptr_t)p); in unwind_phase2_forced()
289 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
296 (void *)exception_object); in unwind_phase2_forced()
303 (void *)exception_object); in unwind_phase2_forced()
312 (void *)exception_object, personalityResult); in unwind_phase2_forced()
322 (void *)exception_object); in unwind_phase2_forced()
325 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
335 _Unwind_RaiseException(_Unwind_Exception *exception_object) { in _Unwind_RaiseException() argument
337 (void *)exception_object); in _Unwind_RaiseException()
341 memset(exception_object->private_, 0, sizeof(exception_object->private_)); in _Unwind_RaiseException()
345 RaiseException(STATUS_GCC_THROW, 0, 1, (ULONG_PTR *)&exception_object); in _Unwind_RaiseException()
364 _Unwind_Resume(_Unwind_Exception *exception_object) { in _Unwind_Resume() argument
365 _LIBUNWIND_TRACE_API("_Unwind_Resume(ex_obj=%p)", (void *)exception_object); in _Unwind_Resume()
367 if (exception_object->private_[0] != 0) { in _Unwind_Resume()
371 unwind_phase2_forced(&uc, exception_object, in _Unwind_Resume()
372 (_Unwind_Stop_Fn) exception_object->private_[0], in _Unwind_Resume()
373 (void *)exception_object->private_[4]); in _Unwind_Resume()
386 ms_exc.ExceptionInformation[0] = (ULONG_PTR)exception_object; in _Unwind_Resume()
387 ms_exc.ExceptionInformation[1] = exception_object->private_[1]; in _Unwind_Resume()
388 ms_exc.ExceptionInformation[2] = exception_object->private_[2]; in _Unwind_Resume()
389 ms_exc.ExceptionInformation[3] = exception_object->private_[3]; in _Unwind_Resume()
390 RtlUnwindEx((PVOID)exception_object->private_[1], in _Unwind_Resume()
391 (PVOID)exception_object->private_[2], &ms_exc, in _Unwind_Resume()
392 exception_object, &ms_ctx, &hist); in _Unwind_Resume()
403 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, in _Unwind_ForcedUnwind() argument
406 (void *)exception_object, (void *)(uintptr_t)stop); in _Unwind_ForcedUnwind()
412 exception_object->private_[0] = (uintptr_t) stop; in _Unwind_ForcedUnwind()
413 exception_object->private_[4] = (uintptr_t) stop_parameter; in _Unwind_ForcedUnwind()
416 return unwind_phase2_forced(&uc, exception_object, stop, stop_parameter); in _Unwind_ForcedUnwind()