Lines Matching refs:PyAPI_FUNC
14 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_New(void);
15 PyAPI_FUNC(void) PyInterpreterState_Clear(PyInterpreterState *);
16 PyAPI_FUNC(void) PyInterpreterState_Delete(PyInterpreterState *);
26 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Get(void);
31 PyAPI_FUNC(PyObject *) PyInterpreterState_GetDict(PyInterpreterState *);
36 PyAPI_FUNC(int64_t) PyInterpreterState_GetID(PyInterpreterState *);
43 PyAPI_FUNC(int) PyState_AddModule(PyObject*, PyModuleDef*);
44 PyAPI_FUNC(int) PyState_RemoveModule(PyModuleDef*);
46 PyAPI_FUNC(PyObject*) PyState_FindModule(PyModuleDef*);
48 PyAPI_FUNC(PyThreadState *) PyThreadState_New(PyInterpreterState *);
49 PyAPI_FUNC(void) PyThreadState_Clear(PyThreadState *);
50 PyAPI_FUNC(void) PyThreadState_Delete(PyThreadState *);
60 PyAPI_FUNC(PyThreadState *) PyThreadState_Get(void);
65 PyAPI_FUNC(PyThreadState *) PyThreadState_Swap(PyThreadState *);
66 PyAPI_FUNC(PyObject *) PyThreadState_GetDict(void);
67 PyAPI_FUNC(int) PyThreadState_SetAsyncExc(unsigned long, PyObject *);
71 PyAPI_FUNC(PyInterpreterState*) PyThreadState_GetInterpreter(PyThreadState *tstate);
72 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
73 PyAPI_FUNC(uint64_t) PyThreadState_GetID(PyThreadState *tstate);
102 PyAPI_FUNC(PyGILState_STATE) PyGILState_Ensure(void);
112 PyAPI_FUNC(void) PyGILState_Release(PyGILState_STATE);
120 PyAPI_FUNC(PyThreadState *) PyGILState_GetThisThreadState(void);