Home
last modified time | relevance | path

Searched refs:exception_class (Results 1 – 20 of 20) sorted by relevance

/external/libunwind/src/unwind/
Dunwind-internal.h65 uint64_t exception_class = exception_object->exception_class; in _Unwind_Phase2() local
100 reason = (*stop) (_U_VERSION, actions, exception_class, in _Unwind_Phase2()
133 reason = (*personality) (_U_VERSION, actions, exception_class, in _Unwind_Phase2()
DRaiseException.c32 uint64_t exception_class = exception_object->exception_class; in _Unwind_RaiseException() local
73 exception_class, exception_object, in _Unwind_RaiseException()
/external/libunwind_llvm/src/
DUnwind-seh.cpp56 if (exc->exception_class != kSEHExceptionClass) in seh_exc_cleanup()
111 exc->exception_class = kSEHExceptionClass; in _GCC_specific_handler()
136 (void *)pers, action, exc->exception_class, in _GCC_specific_handler()
138 urc = pers(1, action, exc->exception_class, exc, ctx); in _GCC_specific_handler()
277 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
297 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
333 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
DUnwind-sjlj.c134 1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1()
195 (*c->personality)(1, action, exception_object->exception_class, in unwind_phase2()
255 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
274 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
310 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
DUnwindLevel1.c95 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1()
192 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2()
276 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
296 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
332 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
DUnwindLevel1-gcc-ext.c121 ex.exception_class = 0x434C4E47554E5700; // CLNGUNW\0 in _Unwind_Backtrace()
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dtest_base.py194 exception_class, argument
205 repr(exception_class))
206 except exception_class as e:
211 with self.assertRaisesRegexp(exception_class,
/external/libunwind_llvm/include/
Dunwind.h75 uint64_t exception_class; member
124 uint64_t exception_class; member
/external/libunwind/include/
Dunwind.h79 uint64_t exception_class; member
/external/libcxxabi/src/
Dcxa_exception.cpp83 ::memcpy(&unwind_exception->exception_class, &newValue, sizeof(newValue)); in __setExceptionClass()
102 ::memcpy(&exClass, &unwind_exception->exception_class, sizeof(exClass)); in __getExceptionClass()
/external/clang/lib/Headers/
Dunwind.h115 _Unwind_Exception_Class exception_class; member
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dunwindraise.ll42 …%exception_class = getelementptr inbounds %struct._Unwind_Exception, %struct._Unwind_Exception* %e…
58 %5 = load i64, i64* %exception_class, align 8
147 %22 = load i64, i64* %exception_class, align 8
/external/llvm/test/CodeGen/X86/
Dunwindraise.ll42 …%exception_class = getelementptr inbounds %struct._Unwind_Exception, %struct._Unwind_Exception* %e…
58 %5 = load i64, i64* %exception_class, align 8
147 %22 = load i64, i64* %exception_class, align 8
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc699 PyObject* exception_class GUARDED_BY(exception_class_mutex) = nullptr;
748 if (exception_class != nullptr) { in TFE_Py_RegisterExceptionClass()
749 Py_DECREF(exception_class); in TFE_Py_RegisterExceptionClass()
752 exception_class = nullptr; in TFE_Py_RegisterExceptionClass()
760 exception_class = e; in TFE_Py_RegisterExceptionClass()
834 if (exception_class != nullptr) { in MaybeRaiseExceptionFromTFStatus()
844 PyErr_SetObject(exception_class, val.get()); in MaybeRaiseExceptionFromTFStatus()
861 if (exception_class != nullptr) { in MaybeRaiseExceptionFromStatus()
863 PyErr_SetObject(exception_class, val.get()); in MaybeRaiseExceptionFromStatus()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp117 uint64_t exception_class; member
334 (expToDelete->exception_class == ourBaseExceptionClass)) { in deleteOurException()
365 (ret->unwindException).exception_class = ourBaseExceptionClass; in createOurException()
/external/grpc-grpc/src/python/grpcio/grpc/beta/
D_client_adaptations.py62 exception_class = face.AbortionError if pair is None else pair[1]
63 return exception_class(rpc_error_call.initial_metadata(),
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
DExceptionDemo.cpp120 uint64_t exception_class; member
339 (expToDelete->exception_class == ourBaseExceptionClass)) { in deleteOurException()
370 (ret->unwindException).exception_class = ourBaseExceptionClass; in createOurException()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp292 (expToDelete->exception_class == ourBaseExceptionClass)) { in deleteOurException()
323 (ret->unwindException).exception_class = ourBaseExceptionClass; in createOurException()
/external/flatbuffers/tests/
Dpy_test.py46 def assertRaises(test_case, fn, exception_class): argument
55 test_case.assertTrue(isinstance(exc, exception_class))
/external/python/cpython3/Lib/test/
Dtest_configparser.py1245 exception_class = configparser.InterpolationMissingOptionError
1246 with self.assertRaises(exception_class) as cm: