HomeSort by relevance Sort by last modified time
    Searched refs:resultFile (Results 1 - 21 of 21) sorted by null

  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServicesTests/src/com/android/framework/multidexlegacytestservices/test/
ServicesTests.java 40 File resultFile = new File(targetFilesDir, "Service" + i);
41 resultFile.delete();
42 assertFalse("Failed to delete result file '" + resultFile.getAbsolutePath() + "'.",
43 resultFile.exists());
73 File resultFile = new File(targetFilesDir, "Service" + i);
74 assertTrue("Service" + i + " never completed.", resultFile.isFile());
75 assertEquals("Service" + i + " was restarted.", 8L, resultFile.length());
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
OutputFileDumper.java 56 private final File resultFile;
69 this.resultFile = new File(config.options().get("file"));
76 this.resultFile = new File(dir, createFileName(benchmarkClass.name()));
79 this.resultFile =
83 logger.fine(String.format("using %s for results", resultFile));
85 this.workFile = new File(resultFile.getPath() + ".tmp");
108 resultFile), e);
121 Files.move(workFile, resultFile);
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
AbstractService.java 57 File resultFile = new File(applicationContext.getFilesDir(), getId());
61 RandomAccessFile raf = new RandomAccessFile(resultFile, "rw");
63 Log.i(TAG, "Writing 0x42434445 at " + raf.length() + " in " + resultFile.getPath());
73 Log.i(TAG, "Saving the result (" + value + ") to " + resultFile.getPath());
76 RandomAccessFile raf = new RandomAccessFile(resultFile, "rw");
78 Log.i(TAG, "Writing result at " + raf.length() + " in " + resultFile.getPath());
87 Log.i(TAG, "creating complete file " + resultFile.getPath());
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
ResultReporter.java 497 File resultFile = ResultHandler.writeResults(mBuildHelper.getSuiteName(),
508 File failureReport = ResultHandler.createFailureReport(resultFile);
512 info("Test Result: %s", resultFile.getCanonicalPath());
517 saveLog(resultFile, zippedResults);
519 uploadResult(resultFile);
599 private void saveLog(File resultFile, File zippedResults) throws IOException {
607 fis = new FileInputStream(resultFile);
659 private void uploadResult(File resultFile) {
662 debug("Result Server: %d", mUploader.uploadResult(resultFile, mReferenceUrl));
708 File resultFile = new File(resultsDir, resultFileName)
    [all...]
  /frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
BlasControls.java 147 File resultFile = new File(externalStorage, RESULT_FILE);
148 resultFile.setWritable(true, false);
150 BufferedWriter rsWriter = new BufferedWriter(new FileWriter(resultFile));
151 Log.v(TAG, "Saved results in: " + resultFile.getAbsolutePath());
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
VideoEditingMemoryTest.java 181 for (String resultFile : mKeyMap.keySet()) {
183 outputFile = mTestDevice.pullFileFromExternal(resultFile);
194 listener.testLog(resultFile, LogDataType.TEXT, outputSource);
197 parseOutputFile(new FileInputStream(outputFile), listener, resultFile);
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
ScriptGroupTestActivity.java 275 File resultFile = new File(externalStorage, RESULT_FILE);
276 resultFile.setWritable(true, false);
278 BufferedWriter rsWriter = new BufferedWriter(new FileWriter(resultFile));
279 Log.v(TAG, "Saved results in: " + resultFile.getAbsolutePath());
303 Log.v(TAG, "result file:"+resultFile.getAbsolutePath());
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 512 File resultFile = new File(externalStorage, RESULT_FILE);
513 resultFile.setWritable(true, false);
515 BufferedWriter rsWriter = new BufferedWriter(new FileWriter(resultFile));
516 Log.v(TAG, "Saved results in: " + resultFile.getAbsolutePath());
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
IPControls.java 252 File resultFile = new File(externalStorage, RESULT_FILE);
253 resultFile.setWritable(true, false);
255 BufferedWriter rsWriter = new BufferedWriter(new FileWriter(resultFile));
256 Log.v(TAG, "Saved results in: " + resultFile.getAbsolutePath());
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
IPControlsJB.java 253 File resultFile = new File(externalStorage, RESULT_FILE);
254 resultFile.setWritable(true, false);
256 BufferedWriter rsWriter = new BufferedWriter(new FileWriter(resultFile));
257 Log.v(TAG, "Saved results in: " + resultFile.getAbsolutePath());
ImageProcessingTest.java 133 File resultFile = new File(externalStorage, directory + filename);
134 resultFile.setWritable(true, false);
136 BufferedWriter rsWriter = new BufferedWriter(new FileWriter(resultFile));
137 Log.v(TAG, "Saved results in: " + resultFile.getAbsolutePath());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportExporter.java 143 File resultFile = new File(resultsDir, resultFileName);
145 FileUtil.writeToFile(rawStream, resultFile);
  /cts/common/util/src/com/android/compatibility/common/util/
ResultHandler.java 156 File resultFile = new File(resultDir, TEST_RESULT_FILE_NAME);
157 if (!resultFile.exists()) {
176 parser.setInput(new FileReader(resultFile));
299 File resultFile = new File(resultDir, TEST_RESULT_FILE_NAME);
300 OutputStream stream = new FileOutputStream(resultFile);
440 return resultFile;
548 File resultFile = new File(resultDir, TEST_RESULT_FILE_NAME);
549 if (!resultFile.exists()) {
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
ValidationTest.java 91 File resultFile = new File(dataFile.getParent(),
96 testData.expectedResult = getStringContent(resultFile);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
EventResultPersister.java 136 * @param resultFile The file the results are persisted in
138 EventResultPersister(@NonNull File resultFile) {
139 mResultsFile = new AtomicFile(resultFile);
  /external/parameter-framework/upstream/test/functional-tests/
Handle.cpp 161 utility::TmpFile resultFile(result);
165 resultFile.getPath() + ' ' + expectedFile.getPath();
  /cts/common/util/tests/src/com/android/compatibility/common/util/
ResultHandlerTest.java 223 File resultFile = new File(resultDir, ResultHandler.TEST_RESULT_FILE_NAME);
224 writer = new FileWriter(resultFile);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-databind/2.6.6/
jackson-databind-2.6.6.jar 

Completed in 737 milliseconds