/third_party/python/Lib/test/support/ |
H A D | threading_helper.py | 205 def __exit__(self, *exc_info):
|
/third_party/python/Lib/multiprocessing/ |
H A D | resource_tracker.py | 216 sys.excepthook(*sys.exc_info())
|
H A D | resource_sharer.py | 150 sys.excepthook(*sys.exc_info())
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | promote.py | 91 logWarn('Cannot open output file', filename, ':', sys.exc_info()[0])
|
H A D | reflow.py | 482 logWarn('Cannot open output file', outFilename, ':', sys.exc_info()[0]) 664 logWarn('Cannot open output count file vuidCounts.py', ':', sys.exc_info()[0])
|
/third_party/python/Lib/ |
H A D | cProfile.py | 118 def __exit__(self, *exc_info):
|
/third_party/vk-gl-cts/scripts/khr_util/ |
H A D | registry_cache.py | 108 print("Unexpected error:", sys.exc_info()[0])
|
/third_party/python/Lib/asyncio/ |
H A D | base_events.py | 1505 af, socktype, proto, exc_info=True) 1744 exc_info = (type(exception), exception, exception.__traceback__) 1746 exc_info = False 1771 logger.error('\n'.join(log_lines), exc_info=exc_info) 1805 exc_info=True) 1828 exc_info=True)
|
/third_party/python/Lib/unittest/test/ |
H A D | test_result.py | 150 # tracebacks instead of sys.exc_info() results." 156 # of sys.exc_info() results." 179 # the form returned by sys.exc_info(): (type, value, traceback)" 189 # tracebacks instead of sys.exc_info() results." 195 # of sys.exc_info() results." 205 exc_info_tuple = sys.exc_info() 233 return sys.exc_info() 262 return sys.exc_info() 290 return sys.exc_info() 319 return sys.exc_info() [all...] |
H A D | test_async_case.py | 26 async def __aexit__(self, *exc_info): 33 async def __aexit__(self, *exc_info):
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
H A D | dmlib_lite.py | 247 LOG.exception(exception, exc_info=True, error_no="03403") 253 LOG.exception(exception_error, exc_info=True, error_no="03403")
|
/third_party/python/Modules/ |
H A D | faulthandler.c | 407 faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info) in faulthandler_exc_handler() argument 410 DWORD code = exc_info->ExceptionRecord->ExceptionCode; in faulthandler_exc_handler() 411 DWORD flags = exc_info->ExceptionRecord->ExceptionFlags; in faulthandler_exc_handler()
|
/third_party/python/Objects/ |
H A D | frameobject.c | 781 _PyErr_StackItem *exc_info = tstate->exc_info; in frame_setlineno() local 782 PyObject *value = exc_info->exc_value; in frame_setlineno() 785 exc_info->exc_value = exc; in frame_setlineno()
|
/third_party/python/Python/ |
H A D | pystate.c | 795 tstate->exc_info = &tstate->exc_state; in init_threadstate() 1047 if (verbose && tstate->exc_info != &tstate->exc_state) { in PyThreadState_Clear() 1478 PyObject *exc_info = _PyErr_StackItemToExcInfoTuple(err_info); in _PyThread_CurrentExceptions() local 1479 if (exc_info == NULL) { in _PyThread_CurrentExceptions() 1483 int stat = PyDict_SetItem(result, id, exc_info); in _PyThread_CurrentExceptions() 1485 Py_DECREF(exc_info); in _PyThread_CurrentExceptions()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | oh_kernel_driver.py | 97 LOG.exception(self.error_message, exc_info=False, error_no="03409")
|
H A D | ltp_posix_driver.py | 80 LOG.exception(self.error_message, exc_info=True, error_no="03409")
|
H A D | jsunit_driver.py | 104 LOG.exception(self.error_message, exc_info=False, error_no="03409") 339 LOG.exception(self.error_message, exc_info=False, error_no="03409")
|
/third_party/googletest/googletest/test/ |
H A D | gtest_xml_output_unittest.py | 301 e = sys.exc_info()[1]
|
/third_party/PyYAML/tests/lib/ |
H A D | test_appliance.py | 61 info = sys.exc_info()
|
/third_party/python/Lib/idlelib/ |
H A D | stackviewer.py | 137 exc_type, exc_value, exc_tb = sys.exc_info()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_base_events.py | 571 exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY)) 581 exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY)) 600 exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY)) 638 exc_info=(ZeroDivisionError, MOCK_ANY, MOCK_ANY)) 661 exc_info=(AttributeError, MOCK_ANY, MOCK_ANY)) 691 exc_info=True) 703 exc_info=True)
|
/kernel/linux/linux-5.10/tools/testing/selftests/tc-testing/ |
H A D | tdc.py | 343 ex_type, ex, ex_tb = sys.exc_info() 374 ex_type, ex, ex_tb = sys.exc_info()
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | code_generator.py | 87 exc = sys.exc_info()[1] 127 exc = sys.exc_info()[1]
|
/third_party/node/tools/inspector_protocol/ |
H A D | code_generator.py | 78 exc = sys.exc_info()[1] 125 exc = sys.exc_info()[1]
|
/third_party/python/Tools/unittestgui/ |
H A D | unittestgui.py | 108 exc_type, exc_value, exc_tb = sys.exc_info() 109 traceback.print_exception(*sys.exc_info())
|