Searched refs:exception_object (Results 1 – 7 of 7) sorted by relevance
/third_party/libunwind/src/unwind/ |
D | RaiseException.c | 29 _Unwind_RaiseException (struct _Unwind_Exception *exception_object) in _Unwind_RaiseException() argument 31 uint64_t exception_class = exception_object->exception_class; in _Unwind_RaiseException() 40 Debug (1, "(exception_object=%p)\n", exception_object); in _Unwind_RaiseException() 67 exception_class, exception_object, in _Unwind_RaiseException() 89 exception_object->private_1 = 0; /* clear "stop" pointer */ in _Unwind_RaiseException() 90 exception_object->private_2 = ip; /* save frame marker */ in _Unwind_RaiseException() 98 return _Unwind_Phase2 (exception_object, &context); in _Unwind_RaiseException()
|
D | unwind-internal.h | 58 _Unwind_Phase2 (struct _Unwind_Exception *exception_object, in _Unwind_Phase2() argument 61 _Unwind_Stop_Fn stop = (_Unwind_Stop_Fn) exception_object->private_1; in _Unwind_Phase2() 62 uint64_t exception_class = exception_object->exception_class; in _Unwind_Phase2() 63 void *stop_parameter = (void *) exception_object->private_2; in _Unwind_Phase2() 92 exception_object, context, stop_parameter); in _Unwind_Phase2() 119 exception_object, context); in _Unwind_Phase2()
|
D | Resume_or_Rethrow.c | 29 _Unwind_Resume_or_Rethrow (struct _Unwind_Exception *exception_object) in _Unwind_Resume_or_Rethrow() argument 34 if (exception_object->private_1) in _Unwind_Resume_or_Rethrow() 39 return _Unwind_Phase2 (exception_object, &context); in _Unwind_Resume_or_Rethrow() 42 return _Unwind_RaiseException (exception_object); in _Unwind_Resume_or_Rethrow()
|
D | ForcedUnwind.c | 29 _Unwind_ForcedUnwind (struct _Unwind_Exception *exception_object, in _Unwind_ForcedUnwind() argument 44 exception_object->private_1 = (unsigned long) stop; in _Unwind_ForcedUnwind() 45 exception_object->private_2 = (unsigned long) stop_parameter; in _Unwind_ForcedUnwind() 47 return _Unwind_Phase2 (exception_object, &context); in _Unwind_ForcedUnwind()
|
D | DeleteException.c | 29 _Unwind_DeleteException (struct _Unwind_Exception *exception_object) in _Unwind_DeleteException() argument 31 _Unwind_Exception_Cleanup_Fn cleanup = exception_object->exception_cleanup; in _Unwind_DeleteException() 34 (*cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exception_object); in _Unwind_DeleteException()
|
D | Resume.c | 29 _Unwind_Resume (struct _Unwind_Exception *exception_object) in _Unwind_Resume() argument 37 _Unwind_Phase2 (exception_object, &context); in _Unwind_Resume()
|
/third_party/node/src/ |
D | node_crypto.cc | 2165 Local<Object> exception_object = in VerifyError() local 2167 exception_object->Set(w->env()->context(), w->env()->code_string(), in VerifyError() 2169 args.GetReturnValue().Set(exception_object); in VerifyError()
|