diff -r 26645d81f48d -r cc28652e0254 traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_performance/src/te_perfcsvgenerator.cpp --- a/traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_performance/src/te_perfcsvgenerator.cpp Tue Aug 31 16:57:14 2010 +0300 +++ b/traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_performance/src/te_perfcsvgenerator.cpp Wed Sep 01 12:39:58 2010 +0100 @@ -48,7 +48,7 @@ ETrue=Append, EFalse=Overwrite @return KErrNone if command was prepared correctly and a system wide error code otherwise. */ -TInt CUptCsvGenerator::OpenL(const TDesC& aFileName, const TBool& aAppend) +TInt CUptCsvGenerator::Open(const TDesC& aFileName, const TBool& aAppend) { iCsvFileSession.Connect(); @@ -89,7 +89,7 @@ appends a newline character. @return KErrNone if command was prepared correctly and a system wide error code otherwise. */ -TInt CUptCsvGenerator::WriteNewLineL() +TInt CUptCsvGenerator::WriteNewLine() { TInt filesize; @@ -211,7 +211,7 @@ @param aTestType is the enum identifier for the test in question @return KErrNone if command was prepared correctly and a system wide error code otherwise. */ -TInt CUptCsvGenerator::WriteHeaderL(const TInt& aTestType) +TInt CUptCsvGenerator::WriteHeader(const TInt& aTestType) { RBuf8 buf; CleanupClosePushL(buf); @@ -294,7 +294,7 @@ @return KErrNone if command was prepared correctly and system wide error code otherwise. */ -TInt CUptCsvGenerator::TestL() +TInt CUptCsvGenerator::Test() { //define filepaths for the test csv files according to the test platform. #ifdef __WINSCW__ @@ -338,11 +338,11 @@ TInt appendcount=3; for(TInt i=0; i!=appendcount;i++) { - OpenL(KTestFileAppend, ETrue); + Open(KTestFileAppend, ETrue); WriteL(atestdata1); - WriteNewLineL(); + WriteNewLine(); WriteL(atestdata2); - WriteNewLineL(); + WriteNewLine(); Close(); } @@ -352,11 +352,11 @@ // 0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000 for(TInt i=0; i!=appendcount;i++) { - OpenL(KTestFileOverwrite, EFalse); + Open(KTestFileOverwrite, EFalse); WriteL(atestdata1); - WriteNewLineL(); + WriteNewLine(); WriteL(atestdata2); - WriteNewLineL(); + WriteNewLine(); Close(); }