Lines Matching refs:result
1955 enum XML_Status result; in XML_Parse() local
1980 result = XML_STATUS_SUSPENDED; in XML_Parse()
1990 result = XML_STATUS_OK; in XML_Parse()
2025 return result; in XML_Parse()
2041 enum XML_Status result = XML_STATUS_OK; in XML_ParseBuffer() local
2091 result = XML_STATUS_SUSPENDED; in XML_ParseBuffer()
2097 return result; in XML_ParseBuffer()
2106 return result; in XML_ParseBuffer()
2267 enum XML_Status result = XML_STATUS_OK; in XML_ResumeParser() local
2287 result = XML_STATUS_SUSPENDED; in XML_ResumeParser()
2293 return result; in XML_ResumeParser()
2302 return result; in XML_ResumeParser()
2699 enum XML_Error result = doContent( in contentProcessor() local
2702 if (result == XML_ERROR_NONE) { in contentProcessor()
2706 return result; in contentProcessor()
2712 enum XML_Error result = initializeEncoding(parser); in externalEntityInitProcessor() local
2713 if (result != XML_ERROR_NONE) in externalEntityInitProcessor()
2714 return result; in externalEntityInitProcessor()
2779 enum XML_Error result; in externalEntityInitProcessor3() local
2780 result = processXmlDecl(parser, 1, start, next); in externalEntityInitProcessor3()
2781 if (result != XML_ERROR_NONE) in externalEntityInitProcessor3()
2782 return result; in externalEntityInitProcessor3()
2814 enum XML_Error result in externalEntityContentProcessor() local
2818 if (result == XML_ERROR_NONE) { in externalEntityContentProcessor()
2822 return result; in externalEntityContentProcessor()
2953 enum XML_Error result; in doContent() local
2962 result = processInternalEntity(parser, entity, XML_FALSE); in doContent()
2963 if (result != XML_ERROR_NONE) in doContent()
2964 return result; in doContent()
2985 enum XML_Error result; in doContent() local
3038 result in doContent()
3040 if (result) in doContent()
3041 return result; in doContent()
3054 enum XML_Error result; in doContent() local
3063 result = storeAtts(parser, enc, s, &name, &bindings, in doContent()
3065 if (result != XML_ERROR_NONE) { in doContent()
3067 return result; in doContent()
3177 enum XML_Error result; in doContent() local
3199 result in doContent()
3201 if (result != XML_ERROR_NONE) in doContent()
3202 return result; in doContent()
3205 return result; in doContent()
3459 enum XML_Error result; in storeAtts() local
3474 result = storeAttributeValue( in storeAtts()
3477 if (result) in storeAtts()
3478 return result; in storeAtts()
3494 enum XML_Error result = addBinding(parser, attId->prefix, attId, in storeAtts() local
3496 if (result) in storeAtts()
3497 return result; in storeAtts()
3526 enum XML_Error result = addBinding(parser, da->id->prefix, da->id, in storeAtts() local
3528 if (result) in storeAtts()
3529 return result; in storeAtts()
4080 enum XML_Error result = doCdataSection( in cdataSectionProcessor() local
4083 if (result != XML_ERROR_NONE) in cdataSectionProcessor()
4084 return result; in cdataSectionProcessor()
4094 return result; in cdataSectionProcessor()
4227 enum XML_Error result in ignoreSectionProcessor() local
4230 if (result != XML_ERROR_NONE) in ignoreSectionProcessor()
4231 return result; in ignoreSectionProcessor()
4236 return result; in ignoreSectionProcessor()
4424 enum XML_Error result; in processXmlDecl() local
4432 result = handleUnknownEncoding(parser, storedEncName); in processXmlDecl()
4434 if (result == XML_ERROR_UNKNOWN_ENCODING) in processXmlDecl()
4436 return result; in processXmlDecl()
4483 enum XML_Error result = initializeEncoding(parser); in prologInitProcessor() local
4484 if (result != XML_ERROR_NONE) in prologInitProcessor()
4485 return result; in prologInitProcessor()
4495 enum XML_Error result = initializeEncoding(parser); in externalParEntInitProcessor() local
4496 if (result != XML_ERROR_NONE) in externalParEntInitProcessor()
4497 return result; in externalParEntInitProcessor()
4547 enum XML_Error result; in entityValueInitProcessor() local
4548 result = processXmlDecl(parser, 0, start, next); in entityValueInitProcessor()
4549 if (result != XML_ERROR_NONE) in entityValueInitProcessor()
4550 return result; in entityValueInitProcessor()
4805 enum XML_Error result = processXmlDecl(parser, 0, s, next); in doProlog() local
4806 if (result != XML_ERROR_NONE) in doProlog()
4807 return result; in doProlog()
4835 enum XML_Error result = processXmlDecl(parser, 1, s, next); in doProlog() local
4836 if (result != XML_ERROR_NONE) in doProlog()
4837 return result; in doProlog()
5076 enum XML_Error result = storeAttributeValue( in doProlog() local
5080 if (result) in doProlog()
5081 return result; in doProlog()
5115 enum XML_Error result in doProlog() local
5133 if (result != XML_ERROR_NONE) in doProlog()
5134 return result; in doProlog()
5139 const enum XML_Error result in doProlog()
5141 if (result != XML_ERROR_NONE) in doProlog()
5142 return result; in doProlog()
5216 const enum XML_Error result in doProlog() local
5218 if (result != XML_ERROR_NONE) in doProlog()
5219 return result; in doProlog()
5388 enum XML_Error result; in doProlog() local
5392 result = doIgnoreSection(parser, enc, &next, end, nextPtr, haveMore); in doProlog()
5393 if (result != XML_ERROR_NONE) in doProlog()
5394 return result; in doProlog()
5397 return result; in doProlog()
5539 enum XML_Error result; in doProlog() local
5542 result = processInternalEntity(parser, entity, betweenDecl); in doProlog()
5543 if (result != XML_ERROR_NONE) in doProlog()
5544 return result; in doProlog()
5830 enum XML_Error result; in processInternalEntity() local
5862 result = doProlog(parser, parser->m_internalEncoding, textStart, textEnd, in processInternalEntity()
5866 result = doContent(parser, parser->m_tagLevel, parser->m_internalEncoding, in processInternalEntity()
5871 if (result == XML_ERROR_NONE) { in processInternalEntity()
5886 return result; in processInternalEntity()
5895 enum XML_Error result; in internalEntityProcessor() local
5909 result = doProlog(parser, parser->m_internalEncoding, textStart, textEnd, in internalEntityProcessor()
5913 result = doContent(parser, openEntity->startTagLevel, in internalEntityProcessor()
5918 if (result != XML_ERROR_NONE) in internalEntityProcessor()
5919 return result; in internalEntityProcessor()
5923 return result; in internalEntityProcessor()
5953 result = doContent(parser, parser->m_parentParser ? 1 : 0, in internalEntityProcessor()
5957 if (result == XML_ERROR_NONE) { in internalEntityProcessor()
5961 return result; in internalEntityProcessor()
5978 enum XML_Error result in storeAttributeValue() local
5980 if (result) in storeAttributeValue()
5981 return result; in storeAttributeValue()
6149 enum XML_Error result; in appendAttributeValue() local
6155 result = appendAttributeValue(parser, parser->m_internalEncoding, in appendAttributeValue()
6163 if (result) in appendAttributeValue()
6164 return result; in appendAttributeValue()
6196 enum XML_Error result = XML_ERROR_NONE; in storeEntityValue() local
6219 result = XML_ERROR_AMPLIFICATION_LIMIT_BREACH; in storeEntityValue()
6233 result = XML_ERROR_NO_MEMORY; in storeEntityValue()
6251 result = XML_ERROR_RECURSIVE_ENTITY_REF; in storeEntityValue()
6264 result = XML_ERROR_EXTERNAL_ENTITY_HANDLING; in storeEntityValue()
6276 result = storeEntityValue( in storeEntityValue()
6282 if (result) in storeEntityValue()
6291 result = XML_ERROR_PARAM_ENTITY_REF; in storeEntityValue()
6294 result = XML_ERROR_NONE; in storeEntityValue()
6299 result = XML_ERROR_NO_MEMORY; in storeEntityValue()
6308 result = XML_ERROR_NO_MEMORY; in storeEntityValue()
6320 result = XML_ERROR_BAD_CHAR_REF; in storeEntityValue()
6335 result = XML_ERROR_NO_MEMORY; in storeEntityValue()
6344 result = XML_ERROR_INVALID_TOKEN; in storeEntityValue()
6349 result = XML_ERROR_INVALID_TOKEN; in storeEntityValue()
6361 result = XML_ERROR_UNEXPECTED_STATE; in storeEntityValue()
6371 return result; in storeEntityValue()
7792 XML_Char *result; in copyString() local
7802 result = memsuite->malloc_fcn(charsRequired * sizeof(XML_Char)); in copyString()
7803 if (result == NULL) in copyString()
7806 memcpy(result, s, charsRequired * sizeof(XML_Char)); in copyString()
7807 return result; in copyString()