• Home
  • Raw
  • Download

Lines Matching refs:hdlr

2894 xmlSAXVersion(xmlSAXHandler *hdlr, int version)  in xmlSAXVersion()  argument
2896 if (hdlr == NULL) return(-1); in xmlSAXVersion()
2898 hdlr->startElement = NULL; in xmlSAXVersion()
2899 hdlr->endElement = NULL; in xmlSAXVersion()
2900 hdlr->startElementNs = xmlSAX2StartElementNs; in xmlSAXVersion()
2901 hdlr->endElementNs = xmlSAX2EndElementNs; in xmlSAXVersion()
2902 hdlr->serror = NULL; in xmlSAXVersion()
2903 hdlr->initialized = XML_SAX2_MAGIC; in xmlSAXVersion()
2906 hdlr->startElement = xmlSAX2StartElement; in xmlSAXVersion()
2907 hdlr->endElement = xmlSAX2EndElement; in xmlSAXVersion()
2908 hdlr->initialized = 1; in xmlSAXVersion()
2912 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAXVersion()
2913 hdlr->externalSubset = xmlSAX2ExternalSubset; in xmlSAXVersion()
2914 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAXVersion()
2915 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAXVersion()
2916 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAXVersion()
2917 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAXVersion()
2918 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAXVersion()
2919 hdlr->getParameterEntity = xmlSAX2GetParameterEntity; in xmlSAXVersion()
2920 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAXVersion()
2921 hdlr->attributeDecl = xmlSAX2AttributeDecl; in xmlSAXVersion()
2922 hdlr->elementDecl = xmlSAX2ElementDecl; in xmlSAXVersion()
2923 hdlr->notationDecl = xmlSAX2NotationDecl; in xmlSAXVersion()
2924 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl; in xmlSAXVersion()
2925 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAXVersion()
2926 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAXVersion()
2927 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAXVersion()
2928 hdlr->reference = xmlSAX2Reference; in xmlSAXVersion()
2929 hdlr->characters = xmlSAX2Characters; in xmlSAXVersion()
2930 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAXVersion()
2931 hdlr->ignorableWhitespace = xmlSAX2Characters; in xmlSAXVersion()
2932 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAXVersion()
2933 hdlr->comment = xmlSAX2Comment; in xmlSAXVersion()
2934 hdlr->warning = xmlParserWarning; in xmlSAXVersion()
2935 hdlr->error = xmlParserError; in xmlSAXVersion()
2936 hdlr->fatalError = xmlParserError; in xmlSAXVersion()
2949 xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning) in xmlSAX2InitDefaultSAXHandler() argument
2951 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDefaultSAXHandler()
2954 xmlSAXVersion(hdlr, xmlSAX2DefaultVersionValue); in xmlSAX2InitDefaultSAXHandler()
2956 hdlr->warning = NULL; in xmlSAX2InitDefaultSAXHandler()
2958 hdlr->warning = xmlParserWarning; in xmlSAX2InitDefaultSAXHandler()
2983 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitHtmlDefaultSAXHandler() argument
2985 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitHtmlDefaultSAXHandler()
2988 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitHtmlDefaultSAXHandler()
2989 hdlr->externalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2990 hdlr->isStandalone = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2991 hdlr->hasInternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2992 hdlr->hasExternalSubset = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2993 hdlr->resolveEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2994 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitHtmlDefaultSAXHandler()
2995 hdlr->getParameterEntity = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2996 hdlr->entityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2997 hdlr->attributeDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2998 hdlr->elementDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
2999 hdlr->notationDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
3000 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
3001 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitHtmlDefaultSAXHandler()
3002 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
3003 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitHtmlDefaultSAXHandler()
3004 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitHtmlDefaultSAXHandler()
3005 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitHtmlDefaultSAXHandler()
3006 hdlr->reference = NULL; in xmlSAX2InitHtmlDefaultSAXHandler()
3007 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitHtmlDefaultSAXHandler()
3008 hdlr->cdataBlock = xmlSAX2CDataBlock; in xmlSAX2InitHtmlDefaultSAXHandler()
3009 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitHtmlDefaultSAXHandler()
3010 hdlr->processingInstruction = xmlSAX2ProcessingInstruction; in xmlSAX2InitHtmlDefaultSAXHandler()
3011 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitHtmlDefaultSAXHandler()
3012 hdlr->warning = xmlParserWarning; in xmlSAX2InitHtmlDefaultSAXHandler()
3013 hdlr->error = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
3014 hdlr->fatalError = xmlParserError; in xmlSAX2InitHtmlDefaultSAXHandler()
3016 hdlr->initialized = 1; in xmlSAX2InitHtmlDefaultSAXHandler()
3041 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr) in xmlSAX2InitDocbDefaultSAXHandler() argument
3043 if ((hdlr == NULL) || (hdlr->initialized != 0)) in xmlSAX2InitDocbDefaultSAXHandler()
3046 hdlr->internalSubset = xmlSAX2InternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
3047 hdlr->externalSubset = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3048 hdlr->isStandalone = xmlSAX2IsStandalone; in xmlSAX2InitDocbDefaultSAXHandler()
3049 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
3050 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset; in xmlSAX2InitDocbDefaultSAXHandler()
3051 hdlr->resolveEntity = xmlSAX2ResolveEntity; in xmlSAX2InitDocbDefaultSAXHandler()
3052 hdlr->getEntity = xmlSAX2GetEntity; in xmlSAX2InitDocbDefaultSAXHandler()
3053 hdlr->getParameterEntity = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3054 hdlr->entityDecl = xmlSAX2EntityDecl; in xmlSAX2InitDocbDefaultSAXHandler()
3055 hdlr->attributeDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3056 hdlr->elementDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3057 hdlr->notationDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3058 hdlr->unparsedEntityDecl = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3059 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator; in xmlSAX2InitDocbDefaultSAXHandler()
3060 hdlr->startDocument = xmlSAX2StartDocument; in xmlSAX2InitDocbDefaultSAXHandler()
3061 hdlr->endDocument = xmlSAX2EndDocument; in xmlSAX2InitDocbDefaultSAXHandler()
3062 hdlr->startElement = xmlSAX2StartElement; in xmlSAX2InitDocbDefaultSAXHandler()
3063 hdlr->endElement = xmlSAX2EndElement; in xmlSAX2InitDocbDefaultSAXHandler()
3064 hdlr->reference = xmlSAX2Reference; in xmlSAX2InitDocbDefaultSAXHandler()
3065 hdlr->characters = xmlSAX2Characters; in xmlSAX2InitDocbDefaultSAXHandler()
3066 hdlr->cdataBlock = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3067 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace; in xmlSAX2InitDocbDefaultSAXHandler()
3068 hdlr->processingInstruction = NULL; in xmlSAX2InitDocbDefaultSAXHandler()
3069 hdlr->comment = xmlSAX2Comment; in xmlSAX2InitDocbDefaultSAXHandler()
3070 hdlr->warning = xmlParserWarning; in xmlSAX2InitDocbDefaultSAXHandler()
3071 hdlr->error = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
3072 hdlr->fatalError = xmlParserError; in xmlSAX2InitDocbDefaultSAXHandler()
3074 hdlr->initialized = 1; in xmlSAX2InitDocbDefaultSAXHandler()