Searched refs:exception_object (Results 1 - 12 of 12) 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_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 DResume.c29 _Unwind_Resume (struct _Unwind_Exception *exception_object) argument
44 _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/libunwind_llvm/src/
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 DUnwindLevel1.c36 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) { argument
49 (void *)exception_object);
54 (void *)exception_object);
64 (void *)exception_object);
82 (void *)exception_object, pc, frameInfo.start_ip, functionName,
93 (void *)exception_object, (void *)(uintptr_t)p);
95 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class,
96 exception_object, (struct _Unwind_Context *)(&cursor1));
103 exception_object->private_2 = (uintptr_t)sp;
106 (void *)exception_object);
130 unwind_phase2(unw_context_t *uc, _Unwind_Exception *exception_object) argument
240 unwind_phase2_forced(unw_context_t *uc, _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
345 _Unwind_RaiseException(_Unwind_Exception *exception_object) argument
379 _Unwind_Resume(_Unwind_Exception *exception_object) argument
401 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
456 _Unwind_DeleteException(_Unwind_Exception *exception_object) argument
[all...]
H A DUnwind-EHABI.cpp441 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) { argument
461 static_cast<void *>(exception_object));
466 static_cast<void *>(exception_object));
476 static_cast<void *>(exception_object));
494 static_cast<void *>(exception_object), (long long)pc,
506 static_cast<void *>(exception_object),
509 exception_object->pr_cache.fnstart = frameInfo.start_ip;
510 exception_object->pr_cache.ehtp =
512 exception_object->pr_cache.additional = frameInfo.flags;
514 (*p)(_US_VIRTUAL_UNWIND_FRAME, exception_object, contex
556 unwind_phase2(unw_context_t *uc, _Unwind_Exception *exception_object, bool resume) argument
704 _Unwind_RaiseException(_Unwind_Exception *exception_object) argument
723 _Unwind_Complete(_Unwind_Exception* exception_object) argument
741 _Unwind_Resume(_Unwind_Exception *exception_object) argument
992 _Unwind_DeleteException(_Unwind_Exception *exception_object) argument
1001 __gnu_unwind_frame(_Unwind_Exception *exception_object, struct _Unwind_Context *context) argument
[all...]
H A DUnwindLevel1-gcc-ext.c30 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object) { argument
33 (void *)exception_object,
34 (long)exception_object->unwinder_cache.reserved1);
37 (void *)exception_object,
38 (long)exception_object->private_1);
44 return _Unwind_RaiseException(exception_object);
49 if (exception_object->private_1 == 0) {
50 return _Unwind_RaiseException(exception_object);
57 _Unwind_Resume(exception_object);
/external/libunwind_llvm/include/
H A Dunwind.h158 _Unwind_SjLj_RaiseException(_Unwind_Exception *exception_object);
159 extern void _Unwind_SjLj_Resume(_Unwind_Exception *exception_object);
162 _Unwind_RaiseException(_Unwind_Exception *exception_object);
163 extern void _Unwind_Resume(_Unwind_Exception *exception_object);
165 extern void _Unwind_DeleteException(_Unwind_Exception *exception_object);
189 extern void _Unwind_Complete(_Unwind_Exception* exception_object);
261 _Unwind_SjLj_ForcedUnwind(_Unwind_Exception *exception_object,
265 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object,
284 _Unwind_SjLj_Resume_or_Rethrow(_Unwind_Exception *exception_object);
287 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object);
[all...]
/external/v8/src/
H A Dmessages.cc71 Object* exception_object = isolate->heap()->undefined_value(); local
73 exception_object = isolate->pending_exception();
75 Handle<Object> exception(exception_object, isolate);

Completed in 462 milliseconds