• Home
  • Raw
  • Download

Lines Matching refs:PyAPI_FUNC

11 PyAPI_FUNC(int) _PyInterpreterState_RequiresIDRef(PyInterpreterState *);
12 PyAPI_FUNC(void) _PyInterpreterState_RequireIDRef(PyInterpreterState *, int);
14 PyAPI_FUNC(PyObject *) _PyInterpreterState_GetMainModule(PyInterpreterState *);
146 PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *);
150 PyAPI_FUNC(PyThreadState *) _PyThreadState_UncheckedGet(void);
152 PyAPI_FUNC(PyObject *) _PyThreadState_GetDict(PyThreadState *tstate);
160 PyAPI_FUNC(int) PyGILState_Check(void);
169 PyAPI_FUNC(PyInterpreterState *) _PyGILState_GetInterpreterStateUnsafe(void);
174 PyAPI_FUNC(PyObject *) _PyThread_CurrentFrames(void);
178 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Main(void);
179 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Head(void);
180 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Next(PyInterpreterState *);
181 PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
182 PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *);
183 PyAPI_FUNC(void) PyThreadState_DeleteCurrent(void);
189 PyAPI_FUNC(_PyFrameEvalFunction) _PyInterpreterState_GetEvalFrameFunc(
191 PyAPI_FUNC(void) _PyInterpreterState_SetEvalFrameFunc(
195 PyAPI_FUNC(const PyConfig*) _PyInterpreterState_GetConfig(PyInterpreterState *interp);
199 PyAPI_FUNC(const PyConfig*) _Py_GetConfig(void);
248 PyAPI_FUNC(int) _PyObject_GetCrossInterpreterData(PyObject *, _PyCrossInterpreterData *);
249 PyAPI_FUNC(PyObject *) _PyCrossInterpreterData_NewObject(_PyCrossInterpreterData *);
250 PyAPI_FUNC(void) _PyCrossInterpreterData_Release(_PyCrossInterpreterData *);
252 PyAPI_FUNC(int) _PyObject_CheckCrossInterpreterData(PyObject *);
258 PyAPI_FUNC(int) _PyCrossInterpreterData_RegisterClass(PyTypeObject *, crossinterpdatafunc);
259 PyAPI_FUNC(crossinterpdatafunc) _PyCrossInterpreterData_Lookup(PyObject *);