Home
last modified time | relevance | path

Searched refs:destFile (Results 1 – 4 of 4) sorted by relevance

/cts/tools/vm-tests-tf/src/util/build/
DSourceBuildStep.java23 SourceBuildStep(File destFile) { in SourceBuildStep() argument
24 super(destFile); in SourceBuildStep()
DJavacBuildStep.java52 File destFile = new File(destPath); in build() local
53 if (!destFile.exists() && !destFile.mkdirs()) in build()
/cts/libs/deviceutil/src/android/cts/util/
DFileUtils.java109 public static boolean copyToFile(InputStream inputStream, File destFile) { in copyToFile() argument
111 if (destFile.exists()) { in copyToFile()
112 destFile.delete(); in copyToFile()
114 FileOutputStream out = new FileOutputStream(destFile); in copyToFile()
/cts/tests/JobScheduler/src/android/jobscheduler/cts/
DTriggerContentTest.java155 public static void copyToFileOrThrow(InputStream inputStream, File destFile) in copyToFileOrThrow() argument
157 if (destFile.exists()) { in copyToFileOrThrow()
158 destFile.delete(); in copyToFileOrThrow()
160 FileOutputStream out = new FileOutputStream(destFile); in copyToFileOrThrow()
178 public Uri createAndAddImage(File destFile, InputStream image) throws IOException, in createAndAddImage() argument
180 copyToFileOrThrow(image, destFile); in createAndAddImage()
182 boolean success = scanner.scan(getContext(), destFile.toString(), "image/jpeg"); in createAndAddImage()