Lines Matching refs:hdlr

2840 xmlSAXVersion(xmlSAXHandler *hdlr, int version)  in xmlSAXVersion()  argument
2842 if (hdlr == NULL) return(-1); in xmlSAXVersion()
2844 hdlr->startElement = NULL; in xmlSAXVersion()
2845 hdlr->endElement = NULL; in xmlSAXVersion()
2846 hdlr->startElementNs = xmlSAX2StartElementNs; in xmlSAXVersion()
2847 hdlr->endElementNs = xmlSAX2EndElementNs; in xmlSAXVersion()
2848 hdlr->serror = NULL; in xmlSAXVersion()
2849 hdlr->initialized = XML_SAX2_MAGIC; in xmlSAXVersion()
2852 hdlr->startElement = xmlSAX2StartElement; in xmlSAXVersion()
2853 hdlr->endElement = xmlSAX2EndElement; in xmlSAXVersion()
2854 hdlr->initialized = 1; in xmlSAXVersion()
2858 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAXVersion()
2859 hdlr->externalSubset = xmlSAX2ExternalSubset; in xmlSAXVersion()
2860 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAXVersion()
2861 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAXVersion()
2862 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAXVersion()
2863 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAXVersion()
2864 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAXVersion()
2865 hdlr->getParameterEntity = xmlSAX2GetParameterEntity; in xmlSAXVersion()
2866 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAXVersion()
2867 hdlr->attributeDecl = xmlSAX2AttributeDecl; in xmlSAXVersion()
2868 hdlr->elementDecl = xmlSAX2ElementDecl; in xmlSAXVersion()
2869 hdlr->notationDecl = xmlSAX2NotationDecl; in xmlSAXVersion()
2870 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl; in xmlSAXVersion()
2871 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAXVersion()
2872 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAXVersion()
2873 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAXVersion()
2874 hdlr->reference = xmlSAX2Reference; in xmlSAXVersion()
2875 hdlr->characters = xmlSAX2Characters; in xmlSAXVersion()
2876 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAXVersion()
2877 hdlr->ignorableWhitespace = xmlSAX2Characters; in xmlSAXVersion()
2878 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAXVersion()
2879 hdlr->comment = xmlSAX2Comment; in xmlSAXVersion()
2880 hdlr->warning = xmlParserWarning; in xmlSAXVersion()
2881 hdlr->error = xmlParserError; in xmlSAXVersion()
2882 hdlr->fatalError = xmlParserError; in xmlSAXVersion()
2895 xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning) in xmlSAX2InitDefaultSAXHandler() argument
2897 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDefaultSAXHandler()
2900 xmlSAXVersion(hdlr, xmlSAX2DefaultVersionValue); in xmlSAX2InitDefaultSAXHandler()
2902 hdlr->warning = NULL; in xmlSAX2InitDefaultSAXHandler()
2904 hdlr->warning = xmlParserWarning; in xmlSAX2InitDefaultSAXHandler()
2929 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitHtmlDefaultSAXHandler() argument
2931 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitHtmlDefaultSAXHandler()
2934 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitHtmlDefaultSAXHandler()
2935 hdlr->externalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2936 hdlr->isStandalone = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2937 hdlr->hasInternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2938 hdlr->hasExternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2939 hdlr->resolveEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2940 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitHtmlDefaultSAXHandler()
2941 hdlr->getParameterEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2942 hdlr->entityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2943 hdlr->attributeDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2944 hdlr->elementDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2945 hdlr->notationDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2946 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2947 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitHtmlDefaultSAXHandler()
2948 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
2949 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
2950 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitHtmlDefaultSAXHandler()
2951 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitHtmlDefaultSAXHandler()
2952 hdlr->reference = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2953 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitHtmlDefaultSAXHandler()
2954 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAX2InitHtmlDefaultSAXHandler()
2955 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitHtmlDefaultSAXHandler()
2956 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAX2InitHtmlDefaultSAXHandler()
2957 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitHtmlDefaultSAXHandler()
2958 hdlr->warning = xmlParserWarning; in xmlSAX2InitHtmlDefaultSAXHandler()
2959 hdlr->error = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
2960 hdlr->fatalError = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
2962 hdlr->initialized = 1; in xmlSAX2InitHtmlDefaultSAXHandler()
2987 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitDocbDefaultSAXHandler() argument
2989 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDocbDefaultSAXHandler()
2992 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
2993 hdlr->externalSubset = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
2994 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAX2InitDocbDefaultSAXHandler()
2995 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
2996 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
2997 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAX2InitDocbDefaultSAXHandler()
2998 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitDocbDefaultSAXHandler()
2999 hdlr->getParameterEntity = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3000 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAX2InitDocbDefaultSAXHandler()
3001 hdlr->attributeDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3002 hdlr->elementDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3003 hdlr->notationDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3004 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3005 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitDocbDefaultSAXHandler()
3006 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitDocbDefaultSAXHandler()
3007 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitDocbDefaultSAXHandler()
3008 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitDocbDefaultSAXHandler()
3009 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitDocbDefaultSAXHandler()
3010 hdlr->reference = xmlSAX2Reference; in xmlSAX2InitDocbDefaultSAXHandler()
3011 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitDocbDefaultSAXHandler()
3012 hdlr->cdataBlock = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3013 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitDocbDefaultSAXHandler()
3014 hdlr->processingInstruction = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3015 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitDocbDefaultSAXHandler()
3016 hdlr->warning = xmlParserWarning; in xmlSAX2InitDocbDefaultSAXHandler()
3017 hdlr->error = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
3018 hdlr->fatalError = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
3020 hdlr->initialized = 1; in xmlSAX2InitDocbDefaultSAXHandler()