Lines Matching refs:exception_object

177 	struct _Unwind_Exception *exception_object,
289 _Unwind_RaiseException_Body(struct _Unwind_Exception *exception_object,
302 exception_object->exception_class,
303 exception_object, ctx);
311 exception_object->private_2 = _Unwind_GetCFA(ctx);
326 if (exception_object->private_2 == _Unwind_GetCFA(ctx)) {
330 exception_object->exception_class,
331 exception_object, ctx);
341 exception_object->private_1 = 0;
351 _Unwind_RaiseException(struct _Unwind_Exception *exception_object)
358 return (_Unwind_RaiseException_Body(exception_object, entry_ctx,
363 _Unwind_ForcedUnwind_Body(struct _Unwind_Exception *exception_object,
381 exception_object->exception_class,
382 exception_object, ctx, stop_parameter);
402 exception_object->exception_class,
403 exception_object, ctx);
407 exception_object->private_1 = (uint64_t)stop;
408 exception_object->private_2 = (uint64_t)stop_parameter;
417 exception_object->exception_class,
418 exception_object, ctx, stop_parameter);
435 _Unwind_ForcedUnwind(struct _Unwind_Exception *exception_object,
443 return (_Unwind_ForcedUnwind_Body(exception_object, stop,
448 _Unwind_Resume(struct _Unwind_Exception *exception_object)
456 if (exception_object->private_1)
457 (void) _Unwind_ForcedUnwind_Body(exception_object,
458 (_Unwind_Stop_Fn)exception_object->private_1,
459 (void *)exception_object->private_2,
462 (void) _Unwind_RaiseException_Body(exception_object, ctx,
468 _Unwind_DeleteException(struct _Unwind_Exception *exception_object)
470 if (exception_object->exception_cleanup != 0)
471 (*(exception_object->exception_cleanup))(_URC_NO_REASON,
472 exception_object);