Home
last modified time | relevance | path

Searched refs:aXmlFile (Results 1 – 2 of 2) sorted by relevance

/aoo4110/main/xml2cmp/source/xcd/
H A Dfilebuff.cxx35 std::ifstream aXmlFile; in LoadXmlFile() local
37 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()
/aoo4110/main/xml2cmp/source/x2cclass/
H A Dxml_cdff.cxx55 SvFileStream aXmlFile; in LoadXmlFile() local
57 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 13 milliseconds