Searched refs:aXmlFile (Results 1 – 2 of 2) sorted by relevance
35 std::ifstream aXmlFile; in LoadXmlFile() local37 aXmlFile.open(i_sXmlFilePath, std::ios::in in LoadXmlFile()43 if (! aXmlFile) in LoadXmlFile()47 aXmlFile.seekg(0, std::ios::end); in LoadXmlFile()48 unsigned long nBufferSize = (unsigned long) aXmlFile.tellg(); in LoadXmlFile()51 aXmlFile.seekg(0); in LoadXmlFile()54 aXmlFile.read(o_rBuffer.Data(), (int) nBufferSize); in LoadXmlFile()55 const bool ret = !aXmlFile.fail(); in LoadXmlFile()56 aXmlFile.close(); in LoadXmlFile()
55 SvFileStream aXmlFile; in LoadXmlFile() local57 aXmlFile.Open(i_sXmlFilePath, STREAM_READ); in LoadXmlFile()58 if (aXmlFile.GetErrorCode() != FSYS_ERR_OK) in LoadXmlFile()62 aXmlFile.Seek(STREAM_SEEK_TO_END); in LoadXmlFile()63 INT32 nBufferSize = aXmlFile.Tell(); in LoadXmlFile()66 aXmlFile.Seek(0); in LoadXmlFile()67 if (aXmlFile.Read(o_rBuffer.operator->(), nBufferSize) == 0) in LoadXmlFile()71 aXmlFile.Close(); in LoadXmlFile()
Completed in 7 milliseconds