Searched defs:exception_object (Results 1 - 11 of 11) sorted by relevance

/external/libunwind/src/unwind/
H A DDeleteException.c29 _Unwind_DeleteException (struct _Unwind_Exception *exception_object) argument
31 _Unwind_Exception_Cleanup_Fn cleanup = exception_object->exception_cleanup;
34 (*cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exception_object);
H A DResume.c29 _Unwind_Resume (struct _Unwind_Exception *exception_object) argument
44 _Unwind_Phase2 (exception_object, &context, &destroy_map);
H A DResume_or_Rethrow.c29 _Unwind_Resume_or_Rethrow (struct _Unwind_Exception *exception_object) argument
34 if (exception_object->private_1)
45 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
54 return _Unwind_RaiseException (exception_object);
H A DForcedUnwind.c30 _Unwind_ForcedUnwind (struct _Unwind_Exception *exception_object, argument
39 exception_object->private_1 isn't NULL when calling
50 exception_object->private_1 = (unsigned long) stop;
51 exception_object->private_2 = (unsigned long) stop_parameter;
53 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
H A DRaiseException.c30 _Unwind_RaiseException (struct _Unwind_Exception *exception_object) argument
32 uint64_t exception_class = exception_object->exception_class;
42 Debug (1, "(exception_object=%p)\n", exception_object);
73 exception_class, exception_object,
98 exception_object->private_1 = 0; /* clear "stop" pointer */
99 exception_object->private_2 = ip; /* save frame marker */
107 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
H A Dunwind-internal.h58 _Unwind_Phase2 (struct _Unwind_Exception *exception_object, argument
64 _Unwind_Stop_Fn stop = (_Unwind_Stop_Fn) exception_object->private_1;
65 uint64_t exception_class = exception_object->exception_class;
66 void *stop_parameter = (void *) exception_object->private_2;
101 exception_object, context, stop_parameter);
134 exception_object, context);
/external/chromium_org/v8/src/
H A Dmessages.cc85 Object* exception_object = isolate->heap()->undefined_value(); local
87 exception_object = isolate->pending_exception();
89 Handle<Object> exception_handle(exception_object, isolate);
/external/libcxxabi/src/Unwind/
H A DUnwindLevel1-gcc-ext.c27 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object) { argument
30 exception_object,
32 (long)exception_object->unwinder_cache.reserved1);
34 (long)exception_object->private_1);
40 return _Unwind_RaiseException(exception_object);
45 if (exception_object->private_1 == 0) {
46 return _Unwind_RaiseException(exception_object);
53 _Unwind_Resume(exception_object);
H A DUnwindLevel1.c28 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) { argument
41 exception_object);
46 exception_object);
56 exception_object);
72 exception_object, pc, frameInfo.start_ip, functionName,
83 exception_object, p);
85 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class,
86 exception_object, (struct _Unwind_Context *)(&cursor1));
93 exception_object->private_2 = (uintptr_t)sp;
96 exception_object);
120 unwind_phase2(unw_context_t *uc, _Unwind_Exception *exception_object) argument
225 unwind_phase2_forced(unw_context_t *uc, _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
327 _Unwind_RaiseException(_Unwind_Exception *exception_object) argument
361 _Unwind_Resume(_Unwind_Exception *exception_object) argument
383 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
487 _Unwind_DeleteException(_Unwind_Exception *exception_object) argument
[all...]
H A DUnwind-sjlj.c73 unwind_phase1(struct _Unwind_Exception *exception_object) { argument
84 exception_object);
94 exception_object, c->personality);
96 1, _UA_SEARCH_PHASE, exception_object->exception_class,
97 exception_object, (struct _Unwind_Context *)c);
103 exception_object->private_2 = (uintptr_t) c;
105 "_URC_HANDLER_FOUND\n", exception_object);
110 "_URC_CONTINUE_UNWIND\n", exception_object);
118 exception_object);
128 unwind_phase2(struct _Unwind_Exception *exception_object) { argument
196 unwind_phase2_forced(struct _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
280 _Unwind_SjLj_RaiseException(struct _Unwind_Exception *exception_object) argument
310 _Unwind_SjLj_Resume(struct _Unwind_Exception *exception_object) argument
327 _Unwind_SjLj_Resume_or_Rethrow(struct _Unwind_Exception *exception_object) argument
424 _Unwind_DeleteException(struct _Unwind_Exception *exception_object) argument
[all...]
H A DUnwind-EHABI.cpp437 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) { argument
456 exception_object);
461 exception_object);
470 exception_object);
486 exception_object, (long long)pc, (long long)frameInfo.start_ip,
498 exception_object, p);
500 exception_object->pr_cache.fnstart = frameInfo.start_ip;
501 exception_object->pr_cache.ehtp =
503 exception_object->pr_cache.additional = frameInfo.flags;
505 (*p)(_US_VIRTUAL_UNWIND_FRAME, exception_object, contex
546 unwind_phase2(unw_context_t *uc, _Unwind_Exception *exception_object, bool resume) argument
689 _Unwind_RaiseException(_Unwind_Exception *exception_object) argument
708 _Unwind_Complete(_Unwind_Exception* exception_object) argument
726 _Unwind_Resume(_Unwind_Exception *exception_object) argument
978 _Unwind_DeleteException(_Unwind_Exception *exception_object) argument
[all...]

Completed in 141 milliseconds