Lines Matching refs:capi

1976     static struct PyExpat_CAPI capi;  in pyexpat_exec()  local
1978 capi.size = sizeof(capi); in pyexpat_exec()
1979 capi.magic = PyExpat_CAPI_MAGIC; in pyexpat_exec()
1980 capi.MAJOR_VERSION = XML_MAJOR_VERSION; in pyexpat_exec()
1981 capi.MINOR_VERSION = XML_MINOR_VERSION; in pyexpat_exec()
1982 capi.MICRO_VERSION = XML_MICRO_VERSION; in pyexpat_exec()
1983 capi.ErrorString = XML_ErrorString; in pyexpat_exec()
1984 capi.GetErrorCode = XML_GetErrorCode; in pyexpat_exec()
1985 capi.GetErrorColumnNumber = XML_GetErrorColumnNumber; in pyexpat_exec()
1986 capi.GetErrorLineNumber = XML_GetErrorLineNumber; in pyexpat_exec()
1987 capi.Parse = XML_Parse; in pyexpat_exec()
1988 capi.ParserCreate_MM = XML_ParserCreate_MM; in pyexpat_exec()
1989 capi.ParserFree = XML_ParserFree; in pyexpat_exec()
1990 capi.SetCharacterDataHandler = XML_SetCharacterDataHandler; in pyexpat_exec()
1991 capi.SetCommentHandler = XML_SetCommentHandler; in pyexpat_exec()
1992 capi.SetDefaultHandlerExpand = XML_SetDefaultHandlerExpand; in pyexpat_exec()
1993 capi.SetElementHandler = XML_SetElementHandler; in pyexpat_exec()
1994 capi.SetNamespaceDeclHandler = XML_SetNamespaceDeclHandler; in pyexpat_exec()
1995 capi.SetProcessingInstructionHandler = XML_SetProcessingInstructionHandler; in pyexpat_exec()
1996 capi.SetUnknownEncodingHandler = XML_SetUnknownEncodingHandler; in pyexpat_exec()
1997 capi.SetUserData = XML_SetUserData; in pyexpat_exec()
1998 capi.SetStartDoctypeDeclHandler = XML_SetStartDoctypeDeclHandler; in pyexpat_exec()
1999 capi.SetEncoding = XML_SetEncoding; in pyexpat_exec()
2000 capi.DefaultUnknownEncodingHandler = PyUnknownEncodingHandler; in pyexpat_exec()
2002 capi.SetHashSalt = XML_SetHashSalt; in pyexpat_exec()
2004 capi.SetHashSalt = NULL; in pyexpat_exec()
2008 PyObject *capi_object = PyCapsule_New(&capi, PyExpat_CAPSULE_NAME, NULL); in pyexpat_exec()