/external/compiler-rt/lib/builtins/ |
D | gcc_personality_v0.c | 142 continueUnwind(struct _Unwind_Exception *exceptionObject, in continueUnwind() argument 149 if (__gnu_unwind_frame(exceptionObject, context) != _URC_OK) in continueUnwind() 168 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject, in __gcc_personality_sj0() argument 173 _Unwind_State state, struct _Unwind_Exception *exceptionObject, in __gcc_personality_sj0() 178 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject, in __gcc_personality_sj0() 191 return continueUnwind(exceptionObject, context); in __gcc_personality_sj0() 196 return continueUnwind(exceptionObject, context); in __gcc_personality_sj0() 231 (uintptr_t)exceptionObject); in __gcc_personality_sj0() 239 return continueUnwind(exceptionObject, context); in __gcc_personality_sj0()
|
D | README.txt | 217 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject,
|
/external/libcxxabi/include/ |
D | cxxabi.h | 54 __cxa_get_exception_ptr(void *exceptionObject) throw(); 56 __cxa_begin_catch(void *exceptionObject) throw(); 60 __cxa_begin_cleanup(void *exceptionObject) throw();
|
/external/libunwind_llvm/include/ |
D | unwind.h | 111 _Unwind_Exception* exceptionObject, 116 _Unwind_Exception* exceptionObject, 149 _Unwind_Exception* exceptionObject, 157 _Unwind_Exception* exceptionObject,
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 507 struct _Unwind_Exception *exceptionObject) { in handleActionValue() argument 511 !exceptionObject || in handleActionValue() 516 (((char*) exceptionObject) + ourBaseFromUnwindOffset); in handleActionValue() 524 (void*)exceptionObject, in handleActionValue() 599 struct _Unwind_Exception *exceptionObject, in handleLsda() argument 704 exceptionObject); in handleLsda() 720 (uintptr_t)exceptionObject); in handleLsda() 781 struct _Unwind_Exception *exceptionObject, in ourPersonality() argument 809 exceptionObject, in ourPersonality()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 556 struct _Unwind_Exception *exceptionObject) { in handleActionValue() argument 560 !exceptionObject || in handleActionValue() 565 (((char*) exceptionObject) + ourBaseFromUnwindOffset); in handleActionValue() 573 (void*)exceptionObject, in handleActionValue() 649 struct _Unwind_Exception *exceptionObject, in handleLsda() argument 754 exceptionObject); in handleLsda() 770 (uintptr_t)exceptionObject); in handleLsda() 832 struct _Unwind_Exception *exceptionObject, in ourPersonality() argument 860 exceptionObject, in ourPersonality()
|
/external/python/cpython2/Objects/ |
D | unicodeobject.c | 1462 … Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, in unicode_decode_call_errorhandler() argument 1482 if (*exceptionObject == NULL) { in unicode_decode_call_errorhandler() 1483 *exceptionObject = PyUnicodeDecodeError_Create( in unicode_decode_call_errorhandler() 1485 if (*exceptionObject == NULL) in unicode_decode_call_errorhandler() 1489 if (PyUnicodeDecodeError_SetStart(*exceptionObject, *startinpos)) in unicode_decode_call_errorhandler() 1491 if (PyUnicodeDecodeError_SetEnd(*exceptionObject, *endinpos)) in unicode_decode_call_errorhandler() 1493 if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason)) in unicode_decode_call_errorhandler() 1497 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); in unicode_decode_call_errorhandler() 3526 static void make_encode_exception(PyObject **exceptionObject, in make_encode_exception() argument 3532 if (*exceptionObject == NULL) { in make_encode_exception() [all …]
|
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 536 struct _Unwind_Exception *exceptionObject) { in handleActionValue() argument 540 !exceptionObject || in handleActionValue() 545 (((char*) exceptionObject) + ourBaseFromUnwindOffset); in handleActionValue() 553 exceptionObject, in handleActionValue() 623 struct _Unwind_Exception *exceptionObject, in handleLsda() argument 730 exceptionObject); in handleLsda() 746 (uintptr_t)exceptionObject); in handleLsda() 808 struct _Unwind_Exception *exceptionObject, in ourPersonality() argument 836 exceptionObject, in ourPersonality()
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 312 PyObject *unicode, PyObject **exceptionObject, 316 raise_encode_exception(PyObject **exceptionObject, 4074 make_decode_exception(PyObject **exceptionObject, in make_decode_exception() argument 4080 if (*exceptionObject == NULL) { in make_decode_exception() 4081 *exceptionObject = PyUnicodeDecodeError_Create( in make_decode_exception() 4085 if (PyUnicodeDecodeError_SetStart(*exceptionObject, startpos)) in make_decode_exception() 4087 if (PyUnicodeDecodeError_SetEnd(*exceptionObject, endpos)) in make_decode_exception() 4089 if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason)) in make_decode_exception() 4095 Py_CLEAR(*exceptionObject); in make_decode_exception() 4111 Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, in unicode_decode_call_errorhandler_wchar() argument [all …]
|