Home
last modified time | relevance | path

Searched refs:exc_info (Results 51 - 75 of 156) sorted by relevance

1234567

/third_party/python/Lib/test/support/
H A Dthreading_helper.py205 def __exit__(self, *exc_info):
/third_party/python/Lib/multiprocessing/
H A Dresource_tracker.py216 sys.excepthook(*sys.exc_info())
H A Dresource_sharer.py150 sys.excepthook(*sys.exc_info())
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dpromote.py91 logWarn('Cannot open output file', filename, ':', sys.exc_info()[0])
H A Dreflow.py482 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 DcProfile.py118 def __exit__(self, *exc_info):
/third_party/vk-gl-cts/scripts/khr_util/
H A Dregistry_cache.py108 print("Unexpected error:", sys.exc_info()[0])
/third_party/python/Lib/asyncio/
H A Dbase_events.py1505 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 Dtest_result.py150 # 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 Dtest_async_case.py26 async def __aexit__(self, *exc_info):
33 async def __aexit__(self, *exc_info):
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
H A Ddmlib_lite.py247 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 Dfaulthandler.c407 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 Dframeobject.c781 _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 Dpystate.c795 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 Doh_kernel_driver.py97 LOG.exception(self.error_message, exc_info=False, error_no="03409")
H A Dltp_posix_driver.py80 LOG.exception(self.error_message, exc_info=True, error_no="03409")
H A Djsunit_driver.py104 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 Dgtest_xml_output_unittest.py301 e = sys.exc_info()[1]
/third_party/PyYAML/tests/lib/
H A Dtest_appliance.py61 info = sys.exc_info()
/third_party/python/Lib/idlelib/
H A Dstackviewer.py137 exc_type, exc_value, exc_tb = sys.exc_info()
/third_party/python/Lib/test/test_asyncio/
H A Dtest_base_events.py571 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 Dtdc.py343 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 Dcode_generator.py87 exc = sys.exc_info()[1]
127 exc = sys.exc_info()[1]
/third_party/node/tools/inspector_protocol/
H A Dcode_generator.py78 exc = sys.exc_info()[1]
125 exc = sys.exc_info()[1]
/third_party/python/Tools/unittestgui/
H A Dunittestgui.py108 exc_type, exc_value, exc_tb = sys.exc_info()
109 traceback.print_exception(*sys.exc_info())

Completed in 28 milliseconds

1234567