Lines Matching refs:PyThreadState
367 single: PyThreadState
368 single: PyThreadState
371 inside a data structure called :c:type:`PyThreadState`. There's also one
372 global variable pointing to the current :c:type:`PyThreadState`: it can
404 PyThreadState *_save;
508 .. c:type:: PyThreadState
565 .. c:function:: PyThreadState* PyEval_SaveThread()
574 .. c:function:: void PyEval_RestoreThread(PyThreadState *tstate)
583 .. c:function:: PyThreadState* PyThreadState_Get()
590 .. c:function:: PyThreadState* PyThreadState_Swap(PyThreadState *tstate)
645 .. c:function:: PyThreadState* PyGILState_GetThisThreadState()
661 This macro expands to ``{ PyThreadState *_save; _save = PyEval_SaveThread();``.
717 .. c:function:: PyThreadState* PyThreadState_New(PyInterpreterState *interp)
724 .. c:function:: void PyThreadState_Clear(PyThreadState *tstate)
730 .. c:function:: void PyThreadState_Delete(PyThreadState *tstate)
763 .. c:function:: void PyEval_AcquireThread(PyThreadState *tstate)
774 .. c:function:: void PyEval_ReleaseThread(PyThreadState *tstate)
819 .. c:function:: PyThreadState* Py_NewInterpreter()
867 .. c:function:: void Py_EndInterpreter(PyThreadState *tstate)
1137 .. c:function:: PyThreadState * PyInterpreterState_ThreadHead(PyInterpreterState *interp)
1139 Return the pointer to the first :c:type:`PyThreadState` object in the list of
1145 .. c:function:: PyThreadState* PyThreadState_Next(PyThreadState *tstate)