• Home
  • Raw
  • Download

Lines Matching refs:PyAPI_FUNC

6 PyAPI_FUNC(int) _PyInterpreterState_RequiresIDRef(PyInterpreterState *);
7 PyAPI_FUNC(void) _PyInterpreterState_RequireIDRef(PyInterpreterState *, int);
9 PyAPI_FUNC(PyObject *) _PyInterpreterState_GetMainModule(PyInterpreterState *);
211 PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *);
215 PyAPI_FUNC(PyThreadState *) _PyThreadState_UncheckedGet(void);
217 PyAPI_FUNC(PyObject *) _PyThreadState_GetDict(PyThreadState *tstate);
220 PyAPI_FUNC(void) PyThreadState_EnterTracing(PyThreadState *tstate);
224 PyAPI_FUNC(void) PyThreadState_LeaveTracing(PyThreadState *tstate);
232 PyAPI_FUNC(int) PyGILState_Check(void);
241 PyAPI_FUNC(PyInterpreterState *) _PyGILState_GetInterpreterStateUnsafe(void);
246 PyAPI_FUNC(PyObject *) _PyThread_CurrentFrames(void);
251 PyAPI_FUNC(PyObject *) _PyThread_CurrentExceptions(void);
255 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Main(void);
256 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Head(void);
257 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Next(PyInterpreterState *);
258 PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
259 PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *);
260 PyAPI_FUNC(void) PyThreadState_DeleteCurrent(void);
266 PyAPI_FUNC(_PyFrameEvalFunction) _PyInterpreterState_GetEvalFrameFunc(
268 PyAPI_FUNC(void) _PyInterpreterState_SetEvalFrameFunc(
272 PyAPI_FUNC(const PyConfig*) _PyInterpreterState_GetConfig(PyInterpreterState *interp);
283 PyAPI_FUNC(int) _PyInterpreterState_GetConfigCopy(
301 PyAPI_FUNC(int) _PyInterpreterState_SetConfig(
306 PyAPI_FUNC(const PyConfig*) _Py_GetConfig(void);
355 PyAPI_FUNC(int) _PyObject_GetCrossInterpreterData(PyObject *, _PyCrossInterpreterData *);
356 PyAPI_FUNC(PyObject *) _PyCrossInterpreterData_NewObject(_PyCrossInterpreterData *);
357 PyAPI_FUNC(void) _PyCrossInterpreterData_Release(_PyCrossInterpreterData *);
359 PyAPI_FUNC(int) _PyObject_CheckCrossInterpreterData(PyObject *);
365 PyAPI_FUNC(int) _PyCrossInterpreterData_RegisterClass(PyTypeObject *, crossinterpdatafunc);
366 PyAPI_FUNC(crossinterpdatafunc) _PyCrossInterpreterData_Lookup(PyObject *);