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

Lines Matching refs:PyAPI_FUNC

106 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_New(void);
107 PyAPI_FUNC(void) PyInterpreterState_Clear(PyInterpreterState *);
108 PyAPI_FUNC(void) PyInterpreterState_Delete(PyInterpreterState *);
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 *);
116 PyAPI_FUNC(void) PyThreadState_DeleteCurrent(void);
119 PyAPI_FUNC(PyThreadState *) PyThreadState_Get(void);
120 PyAPI_FUNC(PyThreadState *) PyThreadState_Swap(PyThreadState *);
121 PyAPI_FUNC(PyObject *) PyThreadState_GetDict(void);
122 PyAPI_FUNC(int) PyThreadState_SetAsyncExc(long, PyObject *);
160 PyAPI_FUNC(PyGILState_STATE) PyGILState_Ensure(void);
170 PyAPI_FUNC(void) PyGILState_Release(PyGILState_STATE);
178 PyAPI_FUNC(PyThreadState *) PyGILState_GetThisThreadState(void);
183 PyAPI_FUNC(PyObject *) _PyThread_CurrentFrames(void);
187 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Head(void);
188 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Next(PyInterpreterState *);
189 PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
190 PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *);