Lines Matching refs:PyAPI_FUNC
5 PyAPI_FUNC(int) _PyInterpreterState_RequiresIDRef(PyInterpreterState *);
6 PyAPI_FUNC(void) _PyInterpreterState_RequireIDRef(PyInterpreterState *, int);
8 PyAPI_FUNC(PyObject *) _PyInterpreterState_GetMainModule(PyInterpreterState *);
157 PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *);
161 PyAPI_FUNC(PyThreadState *) _PyThreadState_UncheckedGet(void);
163 PyAPI_FUNC(PyObject *) _PyThreadState_GetDict(PyThreadState *tstate);
171 PyAPI_FUNC(int) PyGILState_Check(void);
180 PyAPI_FUNC(PyInterpreterState *) _PyGILState_GetInterpreterStateUnsafe(void);
185 PyAPI_FUNC(PyObject *) _PyThread_CurrentFrames(void);
190 PyAPI_FUNC(PyObject *) _PyThread_CurrentExceptions(void);
194 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Main(void);
195 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Head(void);
196 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Next(PyInterpreterState *);
197 PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
198 PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *);
199 PyAPI_FUNC(void) PyThreadState_DeleteCurrent(void);
205 PyAPI_FUNC(_PyFrameEvalFunction) _PyInterpreterState_GetEvalFrameFunc(
207 PyAPI_FUNC(void) _PyInterpreterState_SetEvalFrameFunc(
211 PyAPI_FUNC(const PyConfig*) _PyInterpreterState_GetConfig(PyInterpreterState *interp);
222 PyAPI_FUNC(int) _PyInterpreterState_GetConfigCopy(
240 PyAPI_FUNC(int) _PyInterpreterState_SetConfig(
245 PyAPI_FUNC(const PyConfig*) _Py_GetConfig(void);
294 PyAPI_FUNC(int) _PyObject_GetCrossInterpreterData(PyObject *, _PyCrossInterpreterData *);
295 PyAPI_FUNC(PyObject *) _PyCrossInterpreterData_NewObject(_PyCrossInterpreterData *);
296 PyAPI_FUNC(void) _PyCrossInterpreterData_Release(_PyCrossInterpreterData *);
298 PyAPI_FUNC(int) _PyObject_CheckCrossInterpreterData(PyObject *);
304 PyAPI_FUNC(int) _PyCrossInterpreterData_RegisterClass(PyTypeObject *, crossinterpdatafunc);
305 PyAPI_FUNC(crossinterpdatafunc) _PyCrossInterpreterData_Lookup(PyObject *);