HomeSort by relevance Sort by last modified time
    Searched refs:exception_object (Results 1 - 25 of 25) sorted by null

  /external/libunwind/src/unwind/
DeleteException.c 29 _Unwind_DeleteException (struct _Unwind_Exception *exception_object)
31 _Unwind_Exception_Cleanup_Fn cleanup = exception_object->exception_cleanup;
34 (*cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exception_object);
Resume_or_Rethrow.c 29 _Unwind_Resume_or_Rethrow (struct _Unwind_Exception *exception_object)
34 if (exception_object->private_1)
45 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
54 return _Unwind_RaiseException (exception_object);
ForcedUnwind.c 30 _Unwind_ForcedUnwind (struct _Unwind_Exception *exception_object,
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);
Resume.c 29 _Unwind_Resume (struct _Unwind_Exception *exception_object)
44 _Unwind_Phase2 (exception_object, &context, &destroy_map);
RaiseException.c 30 _Unwind_RaiseException (struct _Unwind_Exception *exception_object)
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);
unwind-internal.h 58 _Unwind_Phase2 (struct _Unwind_Exception *exception_object,
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/
Unwind-sjlj.c 73 unwind_phase1(struct _Unwind_Exception *exception_object) {
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) {
    [all...]
UnwindLevel1.c 36 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) {
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);
    [all...]
Unwind-EHABI.cpp 441 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) {
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, context)
    [all...]
UnwindLevel1-gcc-ext.c 30 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object) {
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);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-sjlj.c 73 unwind_phase1(struct _Unwind_Exception *exception_object) {
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) {
    [all...]
UnwindLevel1.c 29 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) {
42 (void *)exception_object);
47 (void *)exception_object);
57 (void *)exception_object);
75 (void *)exception_object, pc, frameInfo.start_ip, functionName,
86 (void *)exception_object, (void *)(uintptr_t)p);
88 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class,
89 exception_object, (struct _Unwind_Context *)(&cursor1));
96 exception_object->private_2 = (uintptr_t)sp;
99 (void *)exception_object);
    [all...]
Unwind-EHABI.cpp 434 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) {
453 static_cast<void *>(exception_object));
458 static_cast<void *>(exception_object));
467 static_cast<void *>(exception_object));
485 static_cast<void *>(exception_object), (long long)pc,
497 static_cast<void *>(exception_object),
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, context)
    [all...]
UnwindLevel1-gcc-ext.c 29 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object) {
32 (void *)exception_object,
33 (long)exception_object->unwinder_cache.reserved1);
36 (void *)exception_object,
37 (long)exception_object->private_1);
43 return _Unwind_RaiseException(exception_object);
48 if (exception_object->private_1 == 0) {
49 return _Unwind_RaiseException(exception_object);
56 _Unwind_Resume(exception_object);
  /external/libunwind_llvm/include/
unwind.h 158 _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...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
unwind.h 158 _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);
218 _Unwind_SjLj_ForcedUnwind(_Unwind_Exception *exception_object,
222 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object,
241 _Unwind_SjLj_Resume_or_Rethrow(_Unwind_Exception *exception_object);
244 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object);
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc     [all...]
jdwp.h 223 void PostException(const EventLocation* pThrowLoc, mirror::Throwable* exception_object,
  /external/v8/src/
messages.cc 83 Object* exception_object = isolate->heap()->undefined_value(); local
85 exception_object = isolate->pending_exception();
87 Handle<Object> exception(exception_object, isolate);
  /art/runtime/
instrumentation.cc     [all...]
instrumentation.h 94 virtual void ExceptionCaught(Thread* thread, mirror::Throwable* exception_object)
388 void ExceptionCaughtEvent(Thread* thread, mirror::Throwable* exception_object) const
trace.h 165 void ExceptionCaught(Thread* thread, mirror::Throwable* exception_object)
instrumentation_test.cc 98 mirror::Throwable* exception_object ATTRIBUTE_UNUSED)
    [all...]
trace.cc 814 mirror::Throwable* exception_object ATTRIBUTE_UNUSED)
    [all...]
debugger.cc 227 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object)
229 Dbg::PostException(exception_object);
    [all...]

Completed in 469 milliseconds