Lines Matching refs:errorCode

612 #define errorCode (parser->m_errorCode)  macro
889 errorCode = XML_ERROR_NONE; in parserInit()
1504 errorCode = XML_ERROR_SUSPENDED; in XML_Parse()
1507 errorCode = XML_ERROR_FINISHED; in XML_Parse()
1511 errorCode = XML_ERROR_NO_MEMORY; in XML_Parse()
1529 errorCode = processor(parser, bufferPtr, parseEndPtr, &bufferPtr); in XML_Parse()
1531 if (errorCode == XML_ERROR_NONE) { in XML_Parse()
1558 errorCode = processor(parser, s, parseEndPtr = s + len, &end); in XML_Parse()
1560 if (errorCode != XML_ERROR_NONE) { in XML_Parse()
1592 errorCode = XML_ERROR_NO_MEMORY; in XML_Parse()
1630 errorCode = XML_ERROR_SUSPENDED; in XML_ParseBuffer()
1633 errorCode = XML_ERROR_FINISHED; in XML_ParseBuffer()
1637 errorCode = XML_ERROR_NO_MEMORY; in XML_ParseBuffer()
1651 errorCode = processor(parser, start, parseEndPtr, &bufferPtr); in XML_ParseBuffer()
1653 if (errorCode != XML_ERROR_NONE) { in XML_ParseBuffer()
1683 errorCode = XML_ERROR_SUSPENDED; in XML_GetBuffer()
1686 errorCode = XML_ERROR_FINISHED; in XML_GetBuffer()
1725 errorCode = XML_ERROR_NO_MEMORY; in XML_GetBuffer()
1765 errorCode = XML_ERROR_SUSPENDED; in XML_StopParser()
1771 errorCode = XML_ERROR_FINISHED; in XML_StopParser()
1777 errorCode = XML_ERROR_SUSPEND_PE; in XML_StopParser()
1795 errorCode = XML_ERROR_NOT_SUSPENDED; in XML_ResumeParser()
1800 errorCode = processor(parser, bufferPtr, parseEndPtr, &bufferPtr); in XML_ResumeParser()
1802 if (errorCode != XML_ERROR_NONE) { in XML_ResumeParser()
1837 return errorCode; in XML_GetErrorCode()
4918 return errorCode; in errorProcessor()