Home | History | Annotate | Download | only in python2.7

Lines Matching defs:PyThreadState

103 } PyThreadState;
110 PyAPI_FUNC(PyThreadState *) PyThreadState_New(PyInterpreterState *);
111 PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *);
112 PyAPI_FUNC(void) _PyThreadState_Init(PyThreadState *);
113 PyAPI_FUNC(void) PyThreadState_Clear(PyThreadState *);
114 PyAPI_FUNC(void) PyThreadState_Delete(PyThreadState *);
119 PyAPI_FUNC(PyThreadState *) PyThreadState_Get(void);
120 PyAPI_FUNC(PyThreadState *) PyThreadState_Swap(PyThreadState *);
127 PyAPI_DATA(PyThreadState *) _PyThreadState_Current;
178 PyAPI_FUNC(PyThreadState *) PyGILState_GetThisThreadState(void);
189 PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
190 PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *);
192 typedef struct _frame *(*PyThreadFrameGetter)(PyThreadState *self_);