/external/chromium-trace/catapult/telemetry/telemetry/internal/util/ |
D | exception_formatter.py | 16 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/ |
D | unwind-internal.h | 65 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()
|
D | RaiseException.c | 32 uint64_t exception_class = exception_object->exception_class; in _Unwind_RaiseException() local 73 exception_class, exception_object, in _Unwind_RaiseException()
|
/external/libunwind_llvm/src/ |
D | Unwind-sjlj.c | 96 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()
|
D | UnwindLevel1.c | 95 (*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()
|
D | UnwindLevel1-gcc-ext.c | 118 ex.exception_class = 0x434C4E47554E5700; // CLNGUNW\0 in _Unwind_Backtrace()
|
/external/libcxxabi/src/ |
D | cxa_default_handlers.cpp | 40 (unwind_exception->exception_class & get_vendor_and_language) == in demangling_terminate_handler() 45 unwind_exception->exception_class == kOurDependentExceptionClass ? in demangling_terminate_handler()
|
D | cxa_exception.cpp | 77 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()
|
D | cxa_personality.cpp | 496 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()
|
D | cxa_handlers.cpp | 96 (unwind_exception->exception_class & get_vendor_and_language) == in terminate()
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/ |
D | exception_formatter.py | 22 exception_class, exception, tb = sys.exc_info() 31 exception_list = traceback.format_exception_only(exception_class, exception)
|
/external/libunwind_llvm/include/ |
D | unwind.h | 70 uint64_t exception_class; member 119 uint64_t exception_class; member
|
/external/libunwind/include/ |
D | unwind.h | 79 uint64_t exception_class; member
|
/external/clang/lib/Headers/ |
D | unwind.h | 115 _Unwind_Exception_Class exception_class; member
|
/external/llvm/test/CodeGen/X86/ |
D | unwindraise.ll | 42 …%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/ |
D | ExceptionDemo.cpp | 117 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/ |
D | ExceptionDemo.cpp | 120 uint64_t exception_class; member 339 (expToDelete->exception_class == ourBaseExceptionClass)) { in deleteOurException() 370 (ret->unwindException).exception_class = ourBaseExceptionClass; in createOurException()
|
/external/flatbuffers/tests/ |
D | py_test.py | 42 def assertRaises(test_case, fn, exception_class): argument 51 test_case.assertTrue(isinstance(exc, exception_class))
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/ |
D | story_runner_unittest.py | 181 exception_class=None, exception=None, tb=None, msg=None): argument
|