Searched refs:xmlFilePath (Results 1 – 2 of 2) sorted by relevance
/hardware/interfaces/audio/common/all-versions/test/utility/include/utility/ |
D | ValidateXml.h | 35 const char* xmlFilePath, const char* xsdFilePath); 38 #define ASSERT_VALID_XML(xmlFilePath, xsdFilePath) \ argument 40 xmlFilePath, xsdFilePath) 43 #define EXPECT_VALID_XML(xmlFilePath, xsdFilePath) \ argument 45 xmlFilePath, xsdFilePath)
|
/hardware/interfaces/audio/common/all-versions/test/utility/src/ |
D | ValidateXml.cpp | 95 const char* xmlFilePath, const char* xsdFilePath) { in validateXml() 100 "\n Which is: " + xmlFilePath + "\nAgainst the schema: " + xsdFilePathExpr + in validateXml() 110 auto doc = make_xmlUnique(xmlReadFile(xmlFilePath, nullptr, 0)); in validateXml() 142 std::string xmlFilePath = location + "/"s + xmlFileName; in validateXmlMultipleLocations() local 143 if (access(xmlFilePath.c_str(), F_OK) != 0) { in validateXmlMultipleLocations() 147 foundFiles.push_back(" " + xmlFilePath + '\n'); in validateXmlMultipleLocations() 148 auto result = validateXml("xmlFilePath", xsdFilePathExpr, xmlFilePath.c_str(), xsdFilePath); in validateXmlMultipleLocations()
|