Home
last modified time | relevance | path

Searched refs:current_tstate (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Python/
Dtraceback.c888 PyThreadState *current_tstate) in _Py_DumpTracebackThreads() argument
893 if (current_tstate == NULL) { in _Py_DumpTracebackThreads()
905 current_tstate = PyGILState_GetThisThreadState(); in _Py_DumpTracebackThreads()
909 if (current_tstate == NULL) { in _Py_DumpTracebackThreads()
917 interp = current_tstate->interp; in _Py_DumpTracebackThreads()
939 write_thread_id(fd, tstate, tstate == current_tstate); in _Py_DumpTracebackThreads()
940 if (tstate == current_tstate && tstate->interp->gc.collecting) { in _Py_DumpTracebackThreads()
Dpystate.c352 PyThreadState *current_tstate = _PyThreadState_GET(); in PyInterpreterState_Clear() local
354 interpreter_clear(interp, current_tstate); in PyInterpreterState_Clear()
Dceval.c5528 PyThreadState *current_tstate = _PyThreadState_GET(); in _PyEval_SetProfile() local
5529 if (_PySys_Audit(current_tstate, "sys.setprofile", NULL) < 0) { in _PyEval_SetProfile()
5569 PyThreadState *current_tstate = _PyThreadState_GET(); in _PyEval_SetTrace() local
5570 if (_PySys_Audit(current_tstate, "sys.settrace", NULL) < 0) { in _PyEval_SetTrace()
/third_party/python/Include/internal/
Dpycore_traceback.h61 PyThreadState *current_tstate);