Lines Matching refs:PyObject
45 PyObject *PyInit_libxml2mod(void);
75 PyObject *function;
107 PyObject *
108 libxml_xmlMemoryUsed(PyObject * self ATTRIBUTE_UNUSED, in libxml_xmlMemoryUsed()
109 PyObject * args ATTRIBUTE_UNUSED) in libxml_xmlMemoryUsed()
112 PyObject *py_retval; in libxml_xmlMemoryUsed()
120 PyObject *
121 libxml_xmlDebugMemory(PyObject * self ATTRIBUTE_UNUSED, PyObject * args) in libxml_xmlDebugMemory()
124 PyObject *py_retval; in libxml_xmlDebugMemory()
185 PyObject *
186 libxml_xmlPythonCleanupParser(PyObject *self ATTRIBUTE_UNUSED, in libxml_xmlPythonCleanupParser()
187 PyObject *args ATTRIBUTE_UNUSED) { in libxml_xmlPythonCleanupParser()
225 PyObject *
226 libxml_xmlDumpMemory(ATTRIBUTE_UNUSED PyObject * self, in libxml_xmlDumpMemory()
227 ATTRIBUTE_UNUSED PyObject * args) in libxml_xmlDumpMemory()
252 PyObject *file, *ret; in xmlPythonFileCloseRaw()
257 file = (PyObject *) context; in xmlPythonFileCloseRaw()
279 PyObject *file; in xmlPythonFileReadRaw()
280 PyObject *ret; in xmlPythonFileReadRaw()
287 file = (PyObject *) context; in xmlPythonFileReadRaw()
308 PyObject *b; in xmlPythonFileReadRaw()
344 PyObject *file; in xmlPythonFileRead()
345 PyObject *ret; in xmlPythonFileRead()
352 file = (PyObject *) context; in xmlPythonFileRead()
373 PyObject *b; in xmlPythonFileRead()
409 PyObject *file; in xmlPythonFileWrite()
410 PyObject *string; in xmlPythonFileWrite()
411 PyObject *ret = NULL; in xmlPythonFileWrite()
417 file = (PyObject *) context; in xmlPythonFileWrite()
453 PyObject *file, *ret = NULL; in xmlPythonFileClose()
458 file = (PyObject *) context; in xmlPythonFileClose()
483 xmlOutputBufferCreatePythonFile(PyObject *file, in xmlOutputBufferCreatePythonFile()
500 PyObject *
501 libxml_xmlCreateOutputBuffer(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) { in libxml_xmlCreateOutputBuffer()
502 PyObject *py_retval; in libxml_xmlCreateOutputBuffer()
503 PyObject *file; in libxml_xmlCreateOutputBuffer()
530 static PyObject *
531 libxml_outputBufferGetPythonFile(ATTRIBUTE_UNUSED PyObject *self, in libxml_outputBufferGetPythonFile()
532 PyObject *args) { in libxml_outputBufferGetPythonFile()
533 PyObject *buffer; in libxml_outputBufferGetPythonFile()
534 PyObject *file; in libxml_outputBufferGetPythonFile()
554 file = (PyObject *) obj->context; in libxml_outputBufferGetPythonFile()
563 static PyObject *
564 libxml_xmlOutputBufferClose(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_xmlOutputBufferClose()
565 PyObject *py_retval; in libxml_xmlOutputBufferClose()
568 PyObject *pyobj_out; in libxml_xmlOutputBufferClose()
584 static PyObject *
585 libxml_xmlOutputBufferFlush(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_xmlOutputBufferFlush()
586 PyObject *py_retval; in libxml_xmlOutputBufferFlush()
589 PyObject *pyobj_out; in libxml_xmlOutputBufferFlush()
600 static PyObject *
601 libxml_xmlSaveFileTo(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_xmlSaveFileTo()
602 PyObject *py_retval; in libxml_xmlSaveFileTo()
605 PyObject *pyobj_buf; in libxml_xmlSaveFileTo()
607 PyObject *pyobj_cur; in libxml_xmlSaveFileTo()
623 static PyObject *
624 libxml_xmlSaveFormatFileTo(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_xmlSaveFormatFileTo()
625 PyObject *py_retval; in libxml_xmlSaveFormatFileTo()
628 PyObject *pyobj_buf; in libxml_xmlSaveFormatFileTo()
630 PyObject *pyobj_cur; in libxml_xmlSaveFormatFileTo()
660 xmlParserInputBufferCreatePythonFile(PyObject *file, in xmlParserInputBufferCreatePythonFile()
677 PyObject *
678 libxml_xmlCreateInputBuffer(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) { in libxml_xmlCreateInputBuffer()
679 PyObject *py_retval; in libxml_xmlCreateInputBuffer()
680 PyObject *file; in libxml_xmlCreateInputBuffer()
706 static PyObject *pythonExternalEntityLoaderObjext;
713 PyObject *ret; in pythonExternalEntityLoader()
714 PyObject *ctxtobj; in pythonExternalEntityLoader()
763 PyObject *
764 libxml_xmlSetEntityLoader(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) { in libxml_xmlSetEntityLoader()
765 PyObject *py_retval; in libxml_xmlSetEntityLoader()
766 PyObject *loader; in libxml_xmlSetEntityLoader()
797 static PyObject *pythonInputOpenCallbackObject;
811 PyObject *ret; in pythonInputOpenCallback()
822 PyObject *
823 libxml_xmlRegisterInputCallback(ATTRIBUTE_UNUSED PyObject *self, in libxml_xmlRegisterInputCallback()
824 PyObject *args) { in libxml_xmlRegisterInputCallback()
825 PyObject *cb; in libxml_xmlRegisterInputCallback()
854 PyObject *
855 libxml_xmlUnregisterInputCallback(ATTRIBUTE_UNUSED PyObject *self, in libxml_xmlUnregisterInputCallback()
856 ATTRIBUTE_UNUSED PyObject *args) { in libxml_xmlUnregisterInputCallback()
892 PyObject *handler; in pythonStartElement()
893 PyObject *dict; in pythonStartElement()
894 PyObject *attrname; in pythonStartElement()
895 PyObject *attrvalue; in pythonStartElement()
896 PyObject *result = NULL; in pythonStartElement()
902 handler = (PyObject *) user_data; in pythonStartElement()
950 PyObject *handler; in pythonStartDocument()
951 PyObject *result; in pythonStartDocument()
956 handler = (PyObject *) user_data; in pythonStartDocument()
969 PyObject *handler; in pythonEndDocument()
970 PyObject *result; in pythonEndDocument()
975 handler = (PyObject *) user_data; in pythonEndDocument()
992 PyObject *handler; in pythonEndElement()
993 PyObject *result; in pythonEndElement()
998 handler = (PyObject *) user_data; in pythonEndElement()
1017 PyObject *handler; in pythonReference()
1018 PyObject *result; in pythonReference()
1023 handler = (PyObject *) user_data; in pythonReference()
1036 PyObject *handler; in pythonCharacters()
1037 PyObject *result = NULL; in pythonCharacters()
1043 handler = (PyObject *) user_data; in pythonCharacters()
1064 PyObject *handler; in pythonIgnorableWhitespace()
1065 PyObject *result = NULL; in pythonIgnorableWhitespace()
1071 handler = (PyObject *) user_data; in pythonIgnorableWhitespace()
1094 PyObject *handler; in pythonProcessingInstruction()
1095 PyObject *result; in pythonProcessingInstruction()
1100 handler = (PyObject *) user_data; in pythonProcessingInstruction()
1112 PyObject *handler; in pythonComment()
1113 PyObject *result; in pythonComment()
1118 handler = (PyObject *) user_data; in pythonComment()
1132 PyObject *handler; in pythonWarning()
1133 PyObject *result; in pythonWarning()
1140 handler = (PyObject *) user_data; in pythonWarning()
1158 PyObject *handler; in pythonError()
1159 PyObject *result; in pythonError()
1166 handler = (PyObject *) user_data; in pythonError()
1184 PyObject *handler; in pythonFatalError()
1185 PyObject *result; in pythonFatalError()
1192 handler = (PyObject *) user_data; in pythonFatalError()
1210 PyObject *handler; in pythonCdataBlock()
1211 PyObject *result = NULL; in pythonCdataBlock()
1217 handler = (PyObject *) user_data; in pythonCdataBlock()
1242 PyObject *handler; in pythonExternalSubset()
1243 PyObject *result; in pythonExternalSubset()
1249 handler = (PyObject *) user_data; in pythonExternalSubset()
1266 PyObject *handler; in pythonEntityDecl()
1267 PyObject *result; in pythonEntityDecl()
1269 handler = (PyObject *) user_data; in pythonEntityDecl()
1288 PyObject *handler; in pythonNotationDecl()
1289 PyObject *result; in pythonNotationDecl()
1291 handler = (PyObject *) user_data; in pythonNotationDecl()
1310 PyObject *handler; in pythonAttributeDecl()
1311 PyObject *nameList; in pythonAttributeDecl()
1312 PyObject *newName; in pythonAttributeDecl()
1314 PyObject *result; in pythonAttributeDecl()
1317 handler = (PyObject *) user_data; in pythonAttributeDecl()
1346 PyObject *handler; in pythonElementDecl()
1347 PyObject *obj; in pythonElementDecl()
1348 PyObject *result; in pythonElementDecl()
1350 handler = (PyObject *) user_data; in pythonElementDecl()
1372 PyObject *handler; in pythonUnparsedEntityDecl()
1373 PyObject *result; in pythonUnparsedEntityDecl()
1375 handler = (PyObject *) user_data; in pythonUnparsedEntityDecl()
1391 PyObject *handler; in pythonInternalSubset()
1392 PyObject *result; in pythonInternalSubset()
1398 handler = (PyObject *) user_data; in pythonInternalSubset()
1450 PyObject *
1451 libxml_xmlCreatePushParser(ATTRIBUTE_UNUSED PyObject * self, in libxml_xmlCreatePushParser()
1452 PyObject * args) in libxml_xmlCreatePushParser()
1457 PyObject *pyobj_SAX = NULL; in libxml_xmlCreatePushParser()
1460 PyObject *pyret; in libxml_xmlCreatePushParser()
1481 PyObject *
1482 libxml_htmlCreatePushParser(ATTRIBUTE_UNUSED PyObject * self, in libxml_htmlCreatePushParser()
1483 PyObject * args) in libxml_htmlCreatePushParser()
1489 PyObject *pyobj_SAX = NULL; in libxml_htmlCreatePushParser()
1492 PyObject *pyret; in libxml_htmlCreatePushParser()
1518 PyObject *
1519 libxml_xmlSAXParseFile(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlSAXParseFile()
1524 PyObject *pyobj_SAX = NULL; in libxml_xmlSAXParseFile()
1548 PyObject *
1549 libxml_htmlSAXParseFile(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_htmlSAXParseFile()
1554 PyObject *pyobj_SAX = NULL; in libxml_htmlSAXParseFile()
1588 static PyObject *libxml_xmlPythonErrorFuncHandler = NULL;
1589 static PyObject *libxml_xmlPythonErrorFuncCtxt = NULL;
1619 PyObject *list; in libxml_xmlErrorFuncHandler()
1620 PyObject *message; in libxml_xmlErrorFuncHandler()
1621 PyObject *result; in libxml_xmlErrorFuncHandler()
1660 static PyObject *
1661 libxml_xmlRegisterErrorHandler(ATTRIBUTE_UNUSED PyObject * self, in libxml_xmlRegisterErrorHandler()
1662 PyObject * args) in libxml_xmlRegisterErrorHandler()
1664 PyObject *py_retval; in libxml_xmlRegisterErrorHandler()
1665 PyObject *pyobj_f; in libxml_xmlRegisterErrorHandler()
1666 PyObject *pyobj_ctx; in libxml_xmlRegisterErrorHandler()
1705 PyObject *f;
1706 PyObject *arg;
1713 PyObject *list; in libxml_xmlParserCtxtGenericErrorFuncHandler()
1714 PyObject *result; in libxml_xmlParserCtxtGenericErrorFuncHandler()
1782 static PyObject *
1783 libxml_xmlParserCtxtSetErrorHandler(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) in libxml_xmlParserCtxtSetErrorHandler()
1785 PyObject *py_retval; in libxml_xmlParserCtxtSetErrorHandler()
1788 PyObject *pyobj_ctxt; in libxml_xmlParserCtxtSetErrorHandler()
1789 PyObject *pyobj_f; in libxml_xmlParserCtxtSetErrorHandler()
1790 PyObject *pyobj_arg; in libxml_xmlParserCtxtSetErrorHandler()
1833 static PyObject *
1834 libxml_xmlParserCtxtGetErrorHandler(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) in libxml_xmlParserCtxtGetErrorHandler()
1836 PyObject *py_retval; in libxml_xmlParserCtxtGetErrorHandler()
1839 PyObject *pyobj_ctxt; in libxml_xmlParserCtxtGetErrorHandler()
1864 static PyObject *
1865 libxml_xmlFreeParserCtxt(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) { in libxml_xmlFreeParserCtxt()
1867 PyObject *pyobj_ctxt; in libxml_xmlFreeParserCtxt()
1894 PyObject *warn;
1895 PyObject *error;
1896 PyObject *arg;
1903 PyObject *list; in libxml_xmlValidCtxtGenericErrorFuncHandler()
1904 PyObject *result; in libxml_xmlValidCtxtGenericErrorFuncHandler()
1930 PyObject *list; in libxml_xmlValidCtxtGenericWarningFuncHandler()
1931 PyObject *result; in libxml_xmlValidCtxtGenericWarningFuncHandler()
1974 static PyObject *
1975 libxml_xmlSetValidErrors(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlSetValidErrors()
1977 PyObject *py_retval; in libxml_xmlSetValidErrors()
1978 PyObject *pyobj_error; in libxml_xmlSetValidErrors()
1979 PyObject *pyobj_warn; in libxml_xmlSetValidErrors()
1980 PyObject *pyobj_ctx; in libxml_xmlSetValidErrors()
1981 PyObject *pyobj_arg = Py_None; in libxml_xmlSetValidErrors()
2024 static PyObject *
2025 libxml_xmlFreeValidCtxt(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_xmlFreeValidCtxt()
2028 PyObject *pyobj_cur; in libxml_xmlFreeValidCtxt()
2057 PyObject *f;
2058 PyObject *arg;
2069 PyObject *list; in libxml_xmlTextReaderErrorCallback()
2070 PyObject *result; in libxml_xmlTextReaderErrorCallback()
2088 static PyObject *
2089 libxml_xmlTextReaderSetErrorHandler(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) in libxml_xmlTextReaderSetErrorHandler()
2095 PyObject *pyobj_reader; in libxml_xmlTextReaderSetErrorHandler()
2096 PyObject *pyobj_f; in libxml_xmlTextReaderSetErrorHandler()
2097 PyObject *pyobj_arg; in libxml_xmlTextReaderSetErrorHandler()
2098 PyObject *py_retval; in libxml_xmlTextReaderSetErrorHandler()
2145 static PyObject *
2146 libxml_xmlTextReaderGetErrorHandler(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) in libxml_xmlTextReaderGetErrorHandler()
2152 PyObject *pyobj_reader; in libxml_xmlTextReaderGetErrorHandler()
2153 PyObject *py_retval; in libxml_xmlTextReaderGetErrorHandler()
2179 static PyObject *
2180 libxml_xmlFreeTextReader(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) { in libxml_xmlFreeTextReader()
2182 PyObject *pyobj_reader; in libxml_xmlFreeTextReader()
2229 PyObject *list, *cur, *result; in libxml_xmlXPathFuncCallback()
2232 PyObject *current_function = NULL; in libxml_xmlXPathFuncCallback()
2329 PyObject *
2330 libxml_xmlRegisterXPathFunction(ATTRIBUTE_UNUSED PyObject * self, in libxml_xmlRegisterXPathFunction()
2331 PyObject * args) in libxml_xmlRegisterXPathFunction()
2333 PyObject *py_retval; in libxml_xmlRegisterXPathFunction()
2338 PyObject *pyobj_ctx; in libxml_xmlRegisterXPathFunction()
2339 PyObject *pyobj_f; in libxml_xmlRegisterXPathFunction()
2390 PyObject *
2391 libxml_xmlXPathRegisterVariable(ATTRIBUTE_UNUSED PyObject * self, in libxml_xmlXPathRegisterVariable()
2392 PyObject * args) in libxml_xmlXPathRegisterVariable()
2394 PyObject *py_retval; in libxml_xmlXPathRegisterVariable()
2400 PyObject *pyobj_ctx; in libxml_xmlXPathRegisterVariable()
2401 PyObject *pyobj_value; in libxml_xmlXPathRegisterVariable()
2421 static PyObject *
2422 libxml_name(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_name()
2424 PyObject *resultobj, *obj; in libxml_name()
2468 static PyObject *
2469 libxml_doc(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_doc()
2471 PyObject *resultobj, *obj; in libxml_doc()
2508 static PyObject *
2509 libxml_properties(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_properties()
2511 PyObject *resultobj, *obj; in libxml_properties()
2526 static PyObject *
2527 libxml_next(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_next()
2529 PyObject *resultobj, *obj; in libxml_next()
2570 static PyObject *
2571 libxml_prev(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_prev()
2573 PyObject *resultobj, *obj; in libxml_prev()
2610 static PyObject *
2611 libxml_children(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_children()
2613 PyObject *resultobj, *obj; in libxml_children()
2653 static PyObject *
2654 libxml_last(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_last()
2656 PyObject *resultobj, *obj; in libxml_last()
2696 static PyObject *
2697 libxml_parent(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_parent()
2699 PyObject *resultobj, *obj; in libxml_parent()
2739 static PyObject *
2740 libxml_type(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_type()
2742 PyObject *resultobj, *obj; in libxml_type()
2838 PyObject *
2839 libxml_xmlNodeGetNsDefs(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlNodeGetNsDefs()
2841 PyObject *py_retval; in libxml_xmlNodeGetNsDefs()
2844 PyObject *pyobj_node; in libxml_xmlNodeGetNsDefs()
2860 PyObject *
2861 libxml_xmlNodeRemoveNsDef(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlNodeRemoveNsDef()
2863 PyObject *py_retval; in libxml_xmlNodeRemoveNsDef()
2866 PyObject *pyobj_node; in libxml_xmlNodeRemoveNsDef()
2909 PyObject *
2910 libxml_xmlNodeGetNs(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlNodeGetNs()
2912 PyObject *py_retval; in libxml_xmlNodeGetNs()
2915 PyObject *pyobj_node; in libxml_xmlNodeGetNs()
2939 static PyObject *
2940 libxml_serializeNode(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_serializeNode()
2942 PyObject *py_retval = NULL; in libxml_serializeNode()
2944 PyObject *pyobj_node; in libxml_serializeNode()
3013 static PyObject *
3014 libxml_saveNodeTo(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_saveNodeTo()
3016 PyObject *py_file = NULL; in libxml_saveNodeTo()
3018 PyObject *pyobj_node; in libxml_saveNodeTo()
3090 PyObject *
3091 libxml_xmlNewNode(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlNewNode()
3093 PyObject *py_retval; in libxml_xmlNewNode()
3118 static PyObject *
3119 libxml_addLocalCatalog(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_addLocalCatalog()
3123 PyObject *pyobj_ctxt; in libxml_addLocalCatalog()
3152 PyObject *warn;
3153 PyObject *error;
3154 PyObject *arg;
3161 PyObject *list; in libxml_xmlRelaxNGValidityGenericErrorFuncHandler()
3162 PyObject *result; in libxml_xmlRelaxNGValidityGenericErrorFuncHandler()
3188 PyObject *list; in libxml_xmlRelaxNGValidityGenericWarningFuncHandler()
3189 PyObject *result; in libxml_xmlRelaxNGValidityGenericWarningFuncHandler()
3232 static PyObject *
3233 libxml_xmlRelaxNGSetValidErrors(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlRelaxNGSetValidErrors()
3235 PyObject *py_retval; in libxml_xmlRelaxNGSetValidErrors()
3236 PyObject *pyobj_error; in libxml_xmlRelaxNGSetValidErrors()
3237 PyObject *pyobj_warn; in libxml_xmlRelaxNGSetValidErrors()
3238 PyObject *pyobj_ctx; in libxml_xmlRelaxNGSetValidErrors()
3239 PyObject *pyobj_arg = Py_None; in libxml_xmlRelaxNGSetValidErrors()
3288 static PyObject *
3289 libxml_xmlRelaxNGFreeValidCtxt(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) { in libxml_xmlRelaxNGFreeValidCtxt()
3292 PyObject *pyobj_ctxt; in libxml_xmlRelaxNGFreeValidCtxt()
3316 PyObject *warn;
3317 PyObject *error;
3318 PyObject *arg;
3325 PyObject *list; in libxml_xmlSchemaValidityGenericErrorFuncHandler()
3326 PyObject *result; in libxml_xmlSchemaValidityGenericErrorFuncHandler()
3352 PyObject *list; in libxml_xmlSchemaValidityGenericWarningFuncHandler()
3353 PyObject *result; in libxml_xmlSchemaValidityGenericWarningFuncHandler()
3396 PyObject *
3397 libxml_xmlSchemaSetValidErrors(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlSchemaSetValidErrors()
3399 PyObject *py_retval; in libxml_xmlSchemaSetValidErrors()
3400 PyObject *pyobj_error; in libxml_xmlSchemaSetValidErrors()
3401 PyObject *pyobj_warn; in libxml_xmlSchemaSetValidErrors()
3402 PyObject *pyobj_ctx; in libxml_xmlSchemaSetValidErrors()
3403 PyObject *pyobj_arg = Py_None; in libxml_xmlSchemaSetValidErrors()
3452 static PyObject *
3453 libxml_xmlSchemaFreeValidCtxt(ATTRIBUTE_UNUSED PyObject * self, PyObject * args) in libxml_xmlSchemaFreeValidCtxt()
3457 PyObject *pyobj_ctxt; in libxml_xmlSchemaFreeValidCtxt()
3491 PyxmlNodeSet_Convert(PyObject *py_nodeset, xmlNodeSetPtr *result) in PyxmlNodeSet_Convert()
3547 PystringSet_Convert(PyObject *py_strings, xmlChar *** result) in PystringSet_Convert()
3606 static PyObject *
3607 libxml_C14NDocDumpMemory(ATTRIBUTE_UNUSED PyObject * self, in libxml_C14NDocDumpMemory()
3608 PyObject * args) in libxml_C14NDocDumpMemory()
3610 PyObject *py_retval = NULL; in libxml_C14NDocDumpMemory()
3612 PyObject *pyobj_doc; in libxml_C14NDocDumpMemory()
3613 PyObject *pyobj_nodes; in libxml_C14NDocDumpMemory()
3615 PyObject *pyobj_prefixes; in libxml_C14NDocDumpMemory()
3683 static PyObject *
3684 libxml_C14NDocSaveTo(ATTRIBUTE_UNUSED PyObject * self, in libxml_C14NDocSaveTo()
3685 PyObject * args) in libxml_C14NDocSaveTo()
3687 PyObject *pyobj_doc; in libxml_C14NDocSaveTo()
3688 PyObject *py_file; in libxml_C14NDocSaveTo()
3689 PyObject *pyobj_nodes; in libxml_C14NDocSaveTo()
3691 PyObject *pyobj_prefixes; in libxml_C14NDocSaveTo()
3771 static PyObject *
3772 libxml_getObjDesc(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_getObjDesc()
3774 PyObject *obj; in libxml_getObjDesc()
3783 static PyObject *
3784 libxml_compareNodesEqual(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_compareNodesEqual()
3786 PyObject *py_node1, *py_node2; in libxml_compareNodesEqual()
3802 static PyObject *
3803 libxml_nodeHash(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { in libxml_nodeHash()
3805 PyObject *py_node1; in libxml_nodeHash()
3904 PyObject *PyInit_libxml2mod(void) in PyInit_libxml2mod()
3909 PyObject *module; in PyInit_libxml2mod()