• Home
  • Raw
  • Download

Lines Matching refs:PyAPI_FUNC

119 PyAPI_FUNC(int) Py_Is(PyObject *x, PyObject *y);
242 PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
244 PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
247 PyAPI_FUNC(void*) PyType_GetSlot(PyTypeObject*, int);
250 PyAPI_FUNC(PyObject*) PyType_FromModuleAndSpec(PyObject *, PyType_Spec *, PyObject *);
251 PyAPI_FUNC(PyObject *) PyType_GetModule(PyTypeObject *);
252 PyAPI_FUNC(void *) PyType_GetModuleState(PyTypeObject *);
255 PyAPI_FUNC(PyObject *) PyType_GetName(PyTypeObject *);
256 PyAPI_FUNC(PyObject *) PyType_GetQualName(PyTypeObject *);
260 PyAPI_FUNC(int) PyType_IsSubtype(PyTypeObject *, PyTypeObject *);
273 PyAPI_FUNC(unsigned long) PyType_GetFlags(PyTypeObject*);
275 PyAPI_FUNC(int) PyType_Ready(PyTypeObject *);
276 PyAPI_FUNC(PyObject *) PyType_GenericAlloc(PyTypeObject *, Py_ssize_t);
277 PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *,
279 PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
280 PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
283 PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *);
284 PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *);
285 PyAPI_FUNC(PyObject *) PyObject_ASCII(PyObject *);
286 PyAPI_FUNC(PyObject *) PyObject_Bytes(PyObject *);
287 PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
288 PyAPI_FUNC(int) PyObject_RichCompareBool(PyObject *, PyObject *, int);
289 PyAPI_FUNC(PyObject *) PyObject_GetAttrString(PyObject *, const char *);
290 PyAPI_FUNC(int) PyObject_SetAttrString(PyObject *, const char *, PyObject *);
291 PyAPI_FUNC(int) PyObject_HasAttrString(PyObject *, const char *);
292 PyAPI_FUNC(PyObject *) PyObject_GetAttr(PyObject *, PyObject *);
293 PyAPI_FUNC(int) PyObject_SetAttr(PyObject *, PyObject *, PyObject *);
294 PyAPI_FUNC(int) PyObject_HasAttr(PyObject *, PyObject *);
295 PyAPI_FUNC(PyObject *) PyObject_SelfIter(PyObject *);
296 PyAPI_FUNC(PyObject *) PyObject_GenericGetAttr(PyObject *, PyObject *);
297 PyAPI_FUNC(int) PyObject_GenericSetAttr(PyObject *, PyObject *, PyObject *);
299 PyAPI_FUNC(int) PyObject_GenericSetDict(PyObject *, PyObject *, void *);
301 PyAPI_FUNC(Py_hash_t) PyObject_Hash(PyObject *);
302 PyAPI_FUNC(Py_hash_t) PyObject_HashNotImplemented(PyObject *);
303 PyAPI_FUNC(int) PyObject_IsTrue(PyObject *);
304 PyAPI_FUNC(int) PyObject_Not(PyObject *);
305 PyAPI_FUNC(int) PyCallable_Check(PyObject *);
306 PyAPI_FUNC(void) PyObject_ClearWeakRefs(PyObject *);
313 PyAPI_FUNC(PyObject *) PyObject_Dir(PyObject *);
317 PyAPI_FUNC(PyObject *) _PyObject_GetState(PyObject *);
322 PyAPI_FUNC(int) Py_ReprEnter(PyObject *);
323 PyAPI_FUNC(void) Py_ReprLeave(PyObject *);
473 PyAPI_FUNC(void) _Py_NegativeRefcount(const char *filename, int lineno,
477 PyAPI_FUNC(void) _Py_Dealloc(PyObject *);
483 PyAPI_FUNC(void) Py_IncRef(PyObject *);
484 PyAPI_FUNC(void) Py_DecRef(PyObject *);
488 PyAPI_FUNC(void) _Py_IncRef(PyObject *);
489 PyAPI_FUNC(void) _Py_DecRef(PyObject *);
611 PyAPI_FUNC(PyObject*) Py_NewRef(PyObject *obj);
614 PyAPI_FUNC(PyObject*) Py_XNewRef(PyObject *obj);
650 PyAPI_FUNC(int) Py_IsNone(PyObject *x);