Searched refs:pResults (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/mcpat/
H A DxmlParser.h280 XMLResults *pResults = NULL);
283 * "parseString" method will initialize the "pResults" variable with some information that can be used to trace the error.
289 * @param pResults a pointer to a XMLResults variable that will contain some information that can be used to trace the XML parsing error. You can have a user-friendly explanation of the parsing error with the "getError" function.
294 XMLResults *pResults = NULL);
297 * "parseFile" method will initialize the "pResults" variable with some information that can be used to trace the error.
303 * @param pResults a pointer to a XMLResults variable that will contain some information that can be used to trace the XML parsing error. You can have a user-friendly explanation of the parsing error with the "getError" function.
H A DxmlParser.cc570 XMLResults pResults; local
571 XMLNode xnode = XMLNode::parseFile(filename, tag, &pResults);
574 if (pResults.error != eXMLErrorNone) {
578 if (pResults.error == eXMLErrorFirstTagNotFound) {
589 , filename, XMLNode::getError(pResults.error), pResults.nLine,
590 pResults.nColumn, s1, s2, s3);
1942 XMLResults *pResults) {
1945 assert(pResults);
1950 pResults
1941 CountLinesAndColumns(XMLCSTR lpXML, int nUpto, XMLResults *pResults) argument
1963 parseString(XMLCSTR lpszXML, XMLCSTR tag, XMLResults *pResults) argument
2023 parseFile(XMLCSTR filename, XMLCSTR tag, XMLResults *pResults) argument
[all...]

Completed in 32 milliseconds