Lines Matching refs:hdlr

2849 xmlSAXVersion(xmlSAXHandler *hdlr, int version)  in xmlSAXVersion()  argument
2851 if (hdlr == NULL) return(-1); in xmlSAXVersion()
2853 hdlr->startElement = NULL; in xmlSAXVersion()
2854 hdlr->endElement = NULL; in xmlSAXVersion()
2855 hdlr->startElementNs = xmlSAX2StartElementNs; in xmlSAXVersion()
2856 hdlr->endElementNs = xmlSAX2EndElementNs; in xmlSAXVersion()
2857 hdlr->serror = NULL; in xmlSAXVersion()
2858 hdlr->initialized = XML_SAX2_MAGIC; in xmlSAXVersion()
2861 hdlr->startElement = xmlSAX2StartElement; in xmlSAXVersion()
2862 hdlr->endElement = xmlSAX2EndElement; in xmlSAXVersion()
2863 hdlr->initialized = 1; in xmlSAXVersion()
2867 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAXVersion()
2868 hdlr->externalSubset = xmlSAX2ExternalSubset; in xmlSAXVersion()
2869 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAXVersion()
2870 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAXVersion()
2871 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAXVersion()
2872 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAXVersion()
2873 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAXVersion()
2874 hdlr->getParameterEntity = xmlSAX2GetParameterEntity; in xmlSAXVersion()
2875 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAXVersion()
2876 hdlr->attributeDecl = xmlSAX2AttributeDecl; in xmlSAXVersion()
2877 hdlr->elementDecl = xmlSAX2ElementDecl; in xmlSAXVersion()
2878 hdlr->notationDecl = xmlSAX2NotationDecl; in xmlSAXVersion()
2879 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl; in xmlSAXVersion()
2880 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAXVersion()
2881 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAXVersion()
2882 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAXVersion()
2883 hdlr->reference = xmlSAX2Reference; in xmlSAXVersion()
2884 hdlr->characters = xmlSAX2Characters; in xmlSAXVersion()
2885 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAXVersion()
2886 hdlr->ignorableWhitespace = xmlSAX2Characters; in xmlSAXVersion()
2887 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAXVersion()
2888 hdlr->comment = xmlSAX2Comment; in xmlSAXVersion()
2889 hdlr->warning = xmlParserWarning; in xmlSAXVersion()
2890 hdlr->error = xmlParserError; in xmlSAXVersion()
2891 hdlr->fatalError = xmlParserError; in xmlSAXVersion()
2904 xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning) in xmlSAX2InitDefaultSAXHandler() argument
2906 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDefaultSAXHandler()
2909 xmlSAXVersion(hdlr, xmlSAX2DefaultVersionValue); in xmlSAX2InitDefaultSAXHandler()
2911 hdlr->warning = NULL; in xmlSAX2InitDefaultSAXHandler()
2913 hdlr->warning = xmlParserWarning; in xmlSAX2InitDefaultSAXHandler()
2938 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitHtmlDefaultSAXHandler() argument
2940 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitHtmlDefaultSAXHandler()
2943 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitHtmlDefaultSAXHandler()
2944 hdlr->externalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2945 hdlr->isStandalone = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2946 hdlr->hasInternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2947 hdlr->hasExternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2948 hdlr->resolveEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2949 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitHtmlDefaultSAXHandler()
2950 hdlr->getParameterEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2951 hdlr->entityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2952 hdlr->attributeDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2953 hdlr->elementDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2954 hdlr->notationDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2955 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2956 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitHtmlDefaultSAXHandler()
2957 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
2958 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
2959 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitHtmlDefaultSAXHandler()
2960 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitHtmlDefaultSAXHandler()
2961 hdlr->reference = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2962 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitHtmlDefaultSAXHandler()
2963 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAX2InitHtmlDefaultSAXHandler()
2964 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitHtmlDefaultSAXHandler()
2965 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAX2InitHtmlDefaultSAXHandler()
2966 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitHtmlDefaultSAXHandler()
2967 hdlr->warning = xmlParserWarning; in xmlSAX2InitHtmlDefaultSAXHandler()
2968 hdlr->error = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
2969 hdlr->fatalError = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
2971 hdlr->initialized = 1; in xmlSAX2InitHtmlDefaultSAXHandler()
2996 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitDocbDefaultSAXHandler() argument
2998 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDocbDefaultSAXHandler()
3001 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
3002 hdlr->externalSubset = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3003 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAX2InitDocbDefaultSAXHandler()
3004 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
3005 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
3006 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAX2InitDocbDefaultSAXHandler()
3007 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitDocbDefaultSAXHandler()
3008 hdlr->getParameterEntity = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3009 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAX2InitDocbDefaultSAXHandler()
3010 hdlr->attributeDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3011 hdlr->elementDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3012 hdlr->notationDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3013 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3014 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitDocbDefaultSAXHandler()
3015 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitDocbDefaultSAXHandler()
3016 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitDocbDefaultSAXHandler()
3017 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitDocbDefaultSAXHandler()
3018 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitDocbDefaultSAXHandler()
3019 hdlr->reference = xmlSAX2Reference; in xmlSAX2InitDocbDefaultSAXHandler()
3020 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitDocbDefaultSAXHandler()
3021 hdlr->cdataBlock = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3022 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitDocbDefaultSAXHandler()
3023 hdlr->processingInstruction = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3024 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitDocbDefaultSAXHandler()
3025 hdlr->warning = xmlParserWarning; in xmlSAX2InitDocbDefaultSAXHandler()
3026 hdlr->error = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
3027 hdlr->fatalError = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
3029 hdlr->initialized = 1; in xmlSAX2InitDocbDefaultSAXHandler()