Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
Dexception_formatter.py16 def PrintFormattedException(exception_class=None, exception=None, tb=None, argument
19 (exception_class, exception, tb))
20 assert bool(exception_class) == bool(exception) == bool(tb), (
23 if not exception_class:
24 exception_class, exception, tb = sys.exc_info()
26 if exception_class == exceptions.IntentionalException:
36 exception_list = traceback.format_exception_only(exception_class, exception)
/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-sjlj.c96 1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1()
154 (*c->personality)(1, action, exception_object->exception_class, in unwind_phase2()
214 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
233 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
269 (*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()
193 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2()
278 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
298 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
334 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
DUnwindLevel1-gcc-ext.c118 ex.exception_class = 0x434C4E47554E5700; // CLNGUNW\0 in _Unwind_Backtrace()
/external/libcxxabi/src/
Dcxa_default_handlers.cpp40 (unwind_exception->exception_class & get_vendor_and_language) == in demangling_terminate_handler()
45 unwind_exception->exception_class == kOurDependentExceptionClass ? in demangling_terminate_handler()
Dcxa_exception.cpp77 unwind_exception->exception_class = kOurExceptionClass; in setExceptionClass()
81 unwind_exception->exception_class = kOurDependentExceptionClass; in setDependentExceptionClass()
86 return (unwind_exception->exception_class & get_vendor_and_language) == in isOurExceptionClass()
91 return (unwind_exception->exception_class & 0xFF) == 0x01; in isDependentException()
Dcxa_personality.cpp496 if (unwind_exception->exception_class == kOurDependentExceptionClass) in get_thrown_object_ptr()
1077 bool native_exception = (unwind_exception->exception_class & get_vendor_and_language) == in __gxx_personality_v0()
1183 (unwind_exception->exception_class & get_vendor_and_language) == in __cxa_call_unexpected()
1247 (new_exception_header->unwindHeader.exception_class & get_vendor_and_language) == in __cxa_call_unexpected()
1255 … new_exception_header->unwindHeader.exception_class == kOurDependentExceptionClass ? in __cxa_call_unexpected()
Dcxa_handlers.cpp96 (unwind_exception->exception_class & get_vendor_and_language) == in terminate()
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
Dexception_formatter.py22 exception_class, exception, tb = sys.exc_info()
31 exception_list = traceback.format_exception_only(exception_class, exception)
/external/libunwind_llvm/include/
Dunwind.h70 uint64_t exception_class; member
119 uint64_t exception_class; member
/external/libunwind/include/
Dunwind.h79 uint64_t exception_class; member
/external/clang/lib/Headers/
Dunwind.h115 _Unwind_Exception_Class exception_class; member
/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/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/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/flatbuffers/tests/
Dpy_test.py42 def assertRaises(test_case, fn, exception_class): argument
51 test_case.assertTrue(isinstance(exc, exception_class))
/external/chromium-trace/catapult/telemetry/telemetry/internal/
Dstory_runner_unittest.py181 exception_class=None, exception=None, tb=None, msg=None): argument