Home
last modified time | relevance | path

Searched refs:async_exc (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Include/cpython/
Dpystate.h105 PyObject *async_exc; /* Asynchronous exception to raise */ member
/third_party/python/Include/internal/
Dpycore_interp.h24 int async_exc; member
/third_party/python/Python/
Dceval_gil.h320 if (tstate->async_exc != NULL) { in take_gil()
Dpystate.c632 tstate->async_exc = NULL; in new_threadstate()
849 Py_CLEAR(tstate->async_exc); in PyThreadState_Clear()
1148 PyObject *old_exc = tstate->async_exc; in PyThreadState_SetAsyncExc()
1150 tstate->async_exc = exc; in PyThreadState_SetAsyncExc()
Dceval.c175 | ceval2->pending.async_exc); in COMPUTE_EVAL_BREAKER()
248 ceval2->pending.async_exc = 1; in SIGNAL_ASYNC_EXC()
258 ceval2->pending.async_exc = 0; in UNSIGNAL_ASYNC_EXC()
1201 if (tstate->async_exc != NULL) { in eval_frame_handle_pending()
1202 PyObject *exc = tstate->async_exc; in eval_frame_handle_pending()
1203 tstate->async_exc = NULL; in eval_frame_handle_pending()