Home
last modified time | relevance | path

Searched refs:exc_tb (Results 1 – 25 of 56) sorted by relevance

123

/third_party/python/Python/
Derrors.c1236 PyObject *exc_value, PyObject *exc_tb, in make_unraisable_hook_args() argument
1257 ADD_ITEM(exc_tb); in make_unraisable_hook_args()
1278 PyObject *exc_value, PyObject *exc_tb, in write_unraisable_exc_file() argument
1315 if (exc_tb != NULL && exc_tb != Py_None) { in write_unraisable_exc_file()
1316 if (PyTraceBack_Print(exc_tb, file) < 0) { in write_unraisable_exc_file()
1397 PyObject *exc_value, PyObject *exc_tb, PyObject *err_msg, in write_unraisable_exc() argument
1408 int res = write_unraisable_exc_file(tstate, exc_type, exc_value, exc_tb, in write_unraisable_exc()
1431 PyObject *exc_tb = PyStructSequence_GET_ITEM(args, 2); in _PyErr_WriteUnraisableDefaultHook() local
1435 if (write_unraisable_exc(tstate, exc_type, exc_value, exc_tb, err_msg, obj) < 0) { in _PyErr_WriteUnraisableDefaultHook()
1460 PyObject *exc_type, *exc_value, *exc_tb; in _PyErr_WriteUnraisableMsg() local
[all …]
Dsysmodule.c73 PyObject *exc_type, *exc_value, *exc_tb; in sys_get_object_id() local
74 _PyErr_Fetch(tstate, &exc_type, &exc_value, &exc_tb); in sys_get_object_id()
78 _PyErr_Restore(tstate, exc_type, exc_value, exc_tb); in sys_get_object_id()
104 PyObject *exc_type, *exc_value, *exc_tb; in PySys_GetObject() local
105 _PyErr_Fetch(tstate, &exc_type, &exc_value, &exc_tb); in PySys_GetObject()
109 _PyErr_Restore(tstate, exc_type, exc_value, exc_tb); in PySys_GetObject()
210 PyObject *exc_type, *exc_value, *exc_tb; in sys_audit_tstate() local
211 _PyErr_Fetch(ts, &exc_type, &exc_value, &exc_tb); in sys_audit_tstate()
300 _PyErr_Restore(ts, exc_type, exc_value, exc_tb); in sys_audit_tstate()
306 Py_XDECREF(exc_tb); in sys_audit_tstate()
/third_party/boost/tools/build/test/
Dtest_all.py71 exc_type, exc_value, exc_tb = sys.exc_info()
75 BoostBuild.annotate_stack_trace(exc_tb)
80 del exc_tb
/third_party/python/Lib/multiprocessing/dummy/
Dconnection.py36 def __exit__(self, exc_type, exc_value, exc_tb): argument
74 def __exit__(self, exc_type, exc_value, exc_tb): argument
/third_party/python/Modules/_ssl/
Ddebughelpers.c77 PyErr_Fetch(&ssl_obj->exc_type, &ssl_obj->exc_value, &ssl_obj->exc_tb); in _PySSL_msg_callback()
144 &ssl_obj->exc_tb); in _PySSL_keylog_callback()
161 PyErr_Fetch(&ssl_obj->exc_type, &ssl_obj->exc_value, &ssl_obj->exc_tb); in _PySSL_keylog_callback()
/third_party/python/Modules/_multiprocessing/clinic/
Dsemaphore.c.h363 PyObject *exc_value, PyObject *exc_tb);
371 PyObject *exc_tb = Py_None; in _multiprocessing_SemLock___exit__() local
387 exc_tb = args[2]; in _multiprocessing_SemLock___exit__()
389 return_value = _multiprocessing_SemLock___exit___impl(self, exc_type, exc_value, exc_tb); in _multiprocessing_SemLock___exit__()
/third_party/python/Lib/idlelib/
Dstackviewer.py137 exc_type, exc_value, exc_tb = sys.exc_info()
141 sys.last_traceback = exc_tb
143 StackBrowser(top, flist=flist, top=top, tb=exc_tb)
/third_party/python/Modules/_sqlite/clinic/
Dconnection.c.h684 PyObject *exc_value, PyObject *exc_tb);
692 PyObject *exc_tb; in pysqlite_connection_exit() local
699 exc_tb = args[2]; in pysqlite_connection_exit()
700 return_value = pysqlite_connection_exit_impl(self, exc_type, exc_value, exc_tb); in pysqlite_connection_exit()
/third_party/grpc/src/python/grpcio/grpc/framework/foundation/
Dlogging_pool.py47 def __exit__(self, exc_type, exc_val, exc_tb): argument
/third_party/grpc/src/python/grpcio_testing/grpc_testing/_channel/
D_channel.py67 def __exit__(self, exc_type, exc_val, exc_tb): argument
/third_party/python/Lib/xmlrpc/
Dserver.py273 exc_type, exc_value, exc_tb = sys.exc_info()
281 exc_type = exc_value = exc_tb = None
372 exc_type, exc_value, exc_tb = sys.exc_info()
380 exc_type = exc_value = exc_tb = None
/third_party/python/Modules/clinic/
Dselectmodule.c.h874 PyObject *exc_value, PyObject *exc_tb);
882 PyObject *exc_tb = Py_None; in select_epoll___exit__() local
898 exc_tb = args[2]; in select_epoll___exit__()
900 return_value = select_epoll___exit___impl(self, exc_type, exc_value, exc_tb); in select_epoll___exit__()
/third_party/python/Lib/test/
Daudit-tests.py274 def excepthook(exc_type, exc_value, exc_tb): argument
276 sys.__excepthook__(exc_type, exc_value, exc_tb)
Dtest_contextlib_async.py468 async def _expect_exc(exc_type, exc, exc_tb): argument
472 async def _expect_ok(exc_type, exc, exc_tb): argument
475 self.assertIsNone(exc_tb)
Dtest_contextlib.py618 def _expect_exc(exc_type, exc, exc_tb): argument
622 def _expect_ok(exc_type, exc, exc_tb): argument
625 self.assertIsNone(exc_tb)
Dtest_raise.py22 def __exit__(self, exc_type, exc_value, exc_tb): argument
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/
D_base_channel.py196 async def __aexit__(self, exc_type, exc_val, exc_tb): argument
/third_party/grpc/src/python/grpcio/grpc/aio/
D_base_channel.py200 async def __aexit__(self, exc_type, exc_val, exc_tb): argument
/third_party/grpc/src/python/grpcio_tests/tests/unit/
D_tcp_proxy.py140 def __exit__(self, exc_type, exc_val, exc_tb): argument
/third_party/python/Modules/
D_tkinter.c1381 PyObject **exc_type, **exc_value, **exc_tb; member
1498 PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); in Tkapp_CallProc()
1513 PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); in Tkapp_CallProc()
1560 PyObject *exc_type, *exc_value, *exc_tb; in Tkapp_Call() local
1574 ev->exc_tb = &exc_tb; in Tkapp_Call()
1581 PyErr_Restore(exc_type, exc_value, exc_tb); in Tkapp_Call()
/third_party/grpc/src/python/grpcio/grpc/beta/
D_client_adaptations.py664 def __exit__(self, exc_type, exc_val, exc_tb): argument
692 def __exit__(self, exc_type, exc_val, exc_tb): argument
D_server_adaptations.py366 def __exit__(self, exc_type, exc_val, exc_tb): argument
/third_party/python/Lib/test/libregrtest/
Dsave_env.py309 def __exit__(self, exc_type, exc_val, exc_tb): argument
/third_party/python/Lib/multiprocessing/
Dmanagers.py655 def __exit__(self, exc_type, exc_val, exc_tb): argument
1053 def __exit__(self, exc_type, exc_val, exc_tb): argument
1189 def __exit__(self, exc_type, exc_val, exc_tb): argument
Dconnection.py267 def __exit__(self, exc_type, exc_value, exc_tb): argument
494 def __exit__(self, exc_type, exc_value, exc_tb): argument

123