Lines Matching refs:PyAPI_FUNC
24 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_New(void);
25 PyAPI_FUNC(void) PyInterpreterState_Clear(PyInterpreterState *);
26 PyAPI_FUNC(void) PyInterpreterState_Delete(PyInterpreterState *);
36 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Get(void);
41 PyAPI_FUNC(PyObject *) PyInterpreterState_GetDict(PyInterpreterState *);
46 PyAPI_FUNC(int64_t) PyInterpreterState_GetID(PyInterpreterState *);
53 PyAPI_FUNC(int) PyState_AddModule(PyObject*, struct PyModuleDef*);
54 PyAPI_FUNC(int) PyState_RemoveModule(struct PyModuleDef*);
56 PyAPI_FUNC(PyObject*) PyState_FindModule(struct PyModuleDef*);
58 PyAPI_FUNC(PyThreadState *) PyThreadState_New(PyInterpreterState *);
59 PyAPI_FUNC(void) PyThreadState_Clear(PyThreadState *);
60 PyAPI_FUNC(void) PyThreadState_Delete(PyThreadState *);
70 PyAPI_FUNC(PyThreadState *) PyThreadState_Get(void);
83 PyAPI_FUNC(PyThreadState *) PyThreadState_Swap(PyThreadState *);
84 PyAPI_FUNC(PyObject *) PyThreadState_GetDict(void);
85 PyAPI_FUNC(int) PyThreadState_SetAsyncExc(unsigned long, PyObject *);
89 PyAPI_FUNC(PyInterpreterState*) PyThreadState_GetInterpreter(PyThreadState *tstate);
90 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
91 PyAPI_FUNC(uint64_t) PyThreadState_GetID(PyThreadState *tstate);
120 PyAPI_FUNC(PyGILState_STATE) PyGILState_Ensure(void);
130 PyAPI_FUNC(void) PyGILState_Release(PyGILState_STATE);
138 PyAPI_FUNC(PyThreadState *) PyGILState_GetThisThreadState(void);