• Home
  • Raw
  • Download

Lines Matching refs:hdlr

2729 xmlSAXVersion(xmlSAXHandler *hdlr, int version)  in xmlSAXVersion()  argument
2731 if (hdlr == NULL) return(-1); in xmlSAXVersion()
2733 hdlr->startElement = NULL; in xmlSAXVersion()
2734 hdlr->endElement = NULL; in xmlSAXVersion()
2735 hdlr->startElementNs = xmlSAX2StartElementNs; in xmlSAXVersion()
2736 hdlr->endElementNs = xmlSAX2EndElementNs; in xmlSAXVersion()
2737 hdlr->serror = NULL; in xmlSAXVersion()
2738 hdlr->initialized = XML_SAX2_MAGIC; in xmlSAXVersion()
2741 hdlr->startElement = xmlSAX2StartElement; in xmlSAXVersion()
2742 hdlr->endElement = xmlSAX2EndElement; in xmlSAXVersion()
2743 hdlr->initialized = 1; in xmlSAXVersion()
2747 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAXVersion()
2748 hdlr->externalSubset = xmlSAX2ExternalSubset; in xmlSAXVersion()
2749 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAXVersion()
2750 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAXVersion()
2751 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAXVersion()
2752 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAXVersion()
2753 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAXVersion()
2754 hdlr->getParameterEntity = xmlSAX2GetParameterEntity; in xmlSAXVersion()
2755 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAXVersion()
2756 hdlr->attributeDecl = xmlSAX2AttributeDecl; in xmlSAXVersion()
2757 hdlr->elementDecl = xmlSAX2ElementDecl; in xmlSAXVersion()
2758 hdlr->notationDecl = xmlSAX2NotationDecl; in xmlSAXVersion()
2759 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl; in xmlSAXVersion()
2760 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAXVersion()
2761 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAXVersion()
2762 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAXVersion()
2763 hdlr->reference = xmlSAX2Reference; in xmlSAXVersion()
2764 hdlr->characters = xmlSAX2Characters; in xmlSAXVersion()
2765 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAXVersion()
2766 hdlr->ignorableWhitespace = xmlSAX2Characters; in xmlSAXVersion()
2767 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAXVersion()
2768 hdlr->comment = xmlSAX2Comment; in xmlSAXVersion()
2769 hdlr->warning = xmlParserWarning; in xmlSAXVersion()
2770 hdlr->error = xmlParserError; in xmlSAXVersion()
2771 hdlr->fatalError = xmlParserError; in xmlSAXVersion()
2784 xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning) in xmlSAX2InitDefaultSAXHandler() argument
2786 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDefaultSAXHandler()
2789 xmlSAXVersion(hdlr, xmlSAX2DefaultVersionValue); in xmlSAX2InitDefaultSAXHandler()
2791 hdlr->warning = NULL; in xmlSAX2InitDefaultSAXHandler()
2793 hdlr->warning = xmlParserWarning; in xmlSAX2InitDefaultSAXHandler()
2818 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitHtmlDefaultSAXHandler() argument
2820 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitHtmlDefaultSAXHandler()
2823 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitHtmlDefaultSAXHandler()
2824 hdlr->externalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2825 hdlr->isStandalone = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2826 hdlr->hasInternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2827 hdlr->hasExternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2828 hdlr->resolveEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2829 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitHtmlDefaultSAXHandler()
2830 hdlr->getParameterEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2831 hdlr->entityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2832 hdlr->attributeDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2833 hdlr->elementDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2834 hdlr->notationDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2835 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2836 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitHtmlDefaultSAXHandler()
2837 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
2838 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
2839 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitHtmlDefaultSAXHandler()
2840 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitHtmlDefaultSAXHandler()
2841 hdlr->reference = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2842 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitHtmlDefaultSAXHandler()
2843 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAX2InitHtmlDefaultSAXHandler()
2844 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitHtmlDefaultSAXHandler()
2845 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAX2InitHtmlDefaultSAXHandler()
2846 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitHtmlDefaultSAXHandler()
2847 hdlr->warning = xmlParserWarning; in xmlSAX2InitHtmlDefaultSAXHandler()
2848 hdlr->error = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
2849 hdlr->fatalError = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
2851 hdlr->initialized = 1; in xmlSAX2InitHtmlDefaultSAXHandler()
2876 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitDocbDefaultSAXHandler() argument
2878 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDocbDefaultSAXHandler()
2881 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
2882 hdlr->externalSubset = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2883 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAX2InitDocbDefaultSAXHandler()
2884 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
2885 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
2886 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAX2InitDocbDefaultSAXHandler()
2887 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitDocbDefaultSAXHandler()
2888 hdlr->getParameterEntity = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2889 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAX2InitDocbDefaultSAXHandler()
2890 hdlr->attributeDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2891 hdlr->elementDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2892 hdlr->notationDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2893 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2894 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitDocbDefaultSAXHandler()
2895 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitDocbDefaultSAXHandler()
2896 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitDocbDefaultSAXHandler()
2897 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitDocbDefaultSAXHandler()
2898 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitDocbDefaultSAXHandler()
2899 hdlr->reference = xmlSAX2Reference; in xmlSAX2InitDocbDefaultSAXHandler()
2900 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitDocbDefaultSAXHandler()
2901 hdlr->cdataBlock = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2902 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitDocbDefaultSAXHandler()
2903 hdlr->processingInstruction = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2904 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitDocbDefaultSAXHandler()
2905 hdlr->warning = xmlParserWarning; in xmlSAX2InitDocbDefaultSAXHandler()
2906 hdlr->error = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
2907 hdlr->fatalError = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
2909 hdlr->initialized = 1; in xmlSAX2InitDocbDefaultSAXHandler()