Lines Matching refs:xmlDest
2315 bool CParameterMgr::exportDomainsXml(string& xmlDest, bool withSettings, bool toFile, in exportDomainsXml() argument
2319 (toFile ? ("\"" + xmlDest + "\"") : " a user-provided buffer")); in exportDomainsXml()
2323 return wrapLegacyXmlExport(xmlDest, toFile, withSettings, *configurableDomains, errorMsg); in exportDomainsXml()
2326 bool CParameterMgr::exportSingleDomainXml(string& xmlDest, const string& domainName, in exportSingleDomainXml() argument
2330 (toFile ? ("\"" + xmlDest + "\"") : " a user-provided buffer")); in exportSingleDomainXml()
2340 return wrapLegacyXmlExport(xmlDest, toFile, withSettings, *requestedDomain, errorMsg); in exportSingleDomainXml()
2343 bool CParameterMgr::wrapLegacyXmlExport(string& xmlDest, bool toFile, bool withSettings, in wrapLegacyXmlExport() argument
2350 return wrapLegacyXmlExportToFile(xmlDest, element, context); in wrapLegacyXmlExport()
2352 return wrapLegacyXmlExportToString(xmlDest, element, context); in wrapLegacyXmlExport()
2356 bool CParameterMgr::wrapLegacyXmlExportToFile(string& xmlDest, in wrapLegacyXmlExportToFile() argument
2360 std::ofstream output(xmlDest.c_str()); in wrapLegacyXmlExportToFile()
2363 context.setError("Failed to open \"" + xmlDest + "\" for writing."); in wrapLegacyXmlExportToFile()
2371 bool CParameterMgr::wrapLegacyXmlExportToString(string& xmlDest, in wrapLegacyXmlExportToString() argument
2381 xmlDest = output.str(); in wrapLegacyXmlExportToString()