Lines Matching refs:output

70     //Test result output file
73 private void writeTestOutput(String filename, Writer output) throws Exception{
74 output.write("File Name: " + filename);
75 output.write(" Complete: " + CodecTest.onCompleteSuccess);
76 output.write(" Error: " + CodecTest.mPlaybackError);
77 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
78 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
79 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
80 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
81 output.write(" Info Meta data update: " + CodecTest.mMediaInfoMetdataUpdateCount);
82 output.write(" Failed To Complete With No Error: " +
84 output.write("\n");
87 private void writeTestSummary(Writer output) throws Exception{
88 output.write("Total Result:\n");
89 output.write("Total Complete: " + mTotalComplete + "\n");
90 output.write("Total Error: " + mTotalPlaybackError + "\n");
91 output.write("Total Unknown Info: " + mTotalInfoUnknown + "\n");
92 output.write("Total Track Lagging: " + mTotalVideoTrackLagging + "\n" );
93 output.write("Total Bad Interleaving: " + mTotalBadInterleaving + "\n");
94 output.write("Total Not Seekable: " + mTotalNotSeekable + "\n");
95 output.write("Total Info Meta data update: " + mTotalMetaDataUpdate + "\n");
96 output.write("Total Failed To Complete With No Error: " +
98 output.write("\n");
124 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true));
150 //Write test result to an output file
151 writeTestOutput(filename,output);
155 writeTestSummary(output);
156 output.close();