HomeSort by relevance Sort by last modified time
    Searched refs:tmpFile (Results 1 - 25 of 51) sorted by null

1 2 3

  /libcore/luni/src/main/java/libcore/net/url/
JarHandler.java 76 String tmpFile = file.substring(idx + 1, file.lastIndexOf('/') + 1) + spec;
77 tmpFile = UrlUtils.canonicalizePath(tmpFile, true);
78 file = file.substring(0, idx + 1) + tmpFile;
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 99 File tmpFile = null;
104 tmpFile = createTempTestFile(null);
113 assertTrue(mTestDevice.pushFile(tmpFile, deviceFilePath));
117 assertTrue(compareFiles(tmpFile, tmpDestFile));
135 File tmpFile = null;
142 tmpFile = createTempTestFile(null);
151 assertTrue(mTestDevice.pushFile(tmpFile, deviceFilePath));
155 assertTrue(compareFiles(tmpFile, tmpDestFile));
159 assertTrue(compareFiles(tmpFile, tmpDestFile2));
191 File tmpFile = null
    [all...]
TestDeviceStressTest.java 53 File tmpFile = null;
59 tmpFile = FileUtil.createTempFile(String.format("tmp_%d", i), ".txt", tmpDir);
60 FileUtil.writeToFile(fileContents, tmpFile);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
MappedByteBufferTest.java 37 File tmpFile, emptyFile;
45 FileInputStream fis = new FileInputStream(tmpFile);
128 FileInputStream fileInputStream = new FileInputStream(tmpFile);
135 FileInputStream inputStream = new FileInputStream(tmpFile);
146 RandomAccessFile randomFile = new RandomAccessFile(tmpFile, "rw");
154 RandomAccessFile random = new RandomAccessFile(tmpFile, "rw");
172 FileInputStream fileInputStream = new FileInputStream(tmpFile);
179 RandomAccessFile randomFile = new RandomAccessFile(tmpFile, "rw");
192 tmpFile = File.createTempFile("harmony", "test"); //$NON-NLS-1$//$NON-NLS-2$
193 tmpFile.deleteOnExit()
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ChannelsTest.java 61 private File tmpFile;
66 tmpFile = File.createTempFile("test","tmp");
67 tmpFile.deleteOnExit();
81 tmpFile.delete();
87 this.fouts = new FileOutputStream(tmpFile);
129 this.fins = new FileInputStream(tmpFile);
156 this.fins = new FileInputStream(tmpFile);
203 this.fouts = new FileOutputStream(tmpFile);
227 this.fouts = new FileOutputStream(tmpFile);
238 this.fins = new FileInputStream(tmpFile);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 70 private File tmpFile;
81 this.tmpFile = new File(file + ".tmp"); //$NON-NLS-1$
127 downloadFeed(tmpFile,debug>0);
130 if (tmpFile.isFile()) {
131 if (debug>0) { System.out.println(Messages.getString("RSSFeedWatcherTask.Compare") + SP + file + Messages.getString("RSSFeedWatcherTask.with") + tmpFile + CL); } //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
151 newFeedWatcher.setFile(tmpFile.toString());
210 RSSFeedUtil.transferData(new FileInputStream(tmpFile), new FileOutputStream(file));
211 tmpFile.deleteOnExit();
  /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
CertBlacklistTest.java 42 private File tmpFile;
131 tmpFile = File.createTempFile("test", "");
134 tmpFile.delete();
140 tmpFile = File.createTempFile("test", "");
146 tmpFile.delete();
194 return getPubkeyBlacklist(tmpFile.getCanonicalPath());
198 return getSerialBlacklist(tmpFile.getCanonicalPath());
202 FileOutputStream out = new FileOutputStream(tmpFile);
252 CertBlacklist bl = new CertBlacklist(tmpFile.getCanonicalPath(),
268 CertBlacklist bl = new CertBlacklist(tmpFile.getCanonicalPath()
    [all...]
  /external/fonttools/MetaTools/
roundTrip.py 63 for tmpFile in (xmlFile1, ttFile2, xmlFile2):
64 if os.path.exists(tmpFile):
65 os.remove(tmpFile)
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostResultTest.java 118 File tmpFile = FileUtil.createTempFile("tmp", "txt");
124 assertTrue("Could not pull file", device.pullFile(devicePath, tmpFile));
125 assertFilesAreEqual(testFile, tmpFile);
128 tmpFile.delete();
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasLoadAttachment.java 289 final File tmpFile;
291 tmpFile = File.createTempFile("eas_", "tmp", mContext.getCacheDir());
300 os = new FileOutputStream(tmpFile);
335 final boolean loadResult = finishLoadAttachment(mAttachment, tmpFile);
350 tmpFile.delete();
EasOutboxSync.java 226 * @param tmpFile The temp file to use.
231 private boolean writeMessageToTempFile(final File tmpFile, final Message message,
235 fileStream = new FileOutputStream(tmpFile);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ComponentResults.java 401 File tmpFile = new File(dir, getName()+".tmp"); //$NON-NLS-1$
404 if (tmpFile.exists()) {
406 tmpFile.renameTo(dataFile);
411 if (tmpFile.exists()) {
412 tmpFile.delete();
416 file = tmpFile;
  /external/clang/www/demo/
index.cgi 382 my $tmpFile = getname(".bc");
385 "llvm-ld $stats -o=$tmpFile $bytecodeFile > $outputFile 2>&1",
388 system("mv $tmpFile.bc $bytecodeFile");
389 system("rm $tmpFile");
407 my $tmpFile = getname(".ll");
408 system("c++filt < $disassemblyFile > $tmpFile 2>&1");
409 system("mv $tmpFile $disassemblyFile");
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferBenchmark.java 58 File tmpFile = new File("/sdcard/bm.tmp");
61 tmpFile = File.createTempFile("MappedByteBufferTest", ".tmp");
63 tmpFile.createNewFile();
64 tmpFile.deleteOnExit();
65 RandomAccessFile raf = new RandomAccessFile(tmpFile, "rw");
  /libcore/luni/src/test/java/libcore/java/io/
OldRandomAccessFileTest.java 54 File tmpFile = new File(fileName);
57 raf = new java.io.RandomAccessFile(tmpFile, "r");
65 tmpFile.createNewFile();
70 raf = new java.io.RandomAccessFile(tmpFile, "rwd");
76 raf = new java.io.RandomAccessFile(tmpFile, "rws");
82 raf = new java.io.RandomAccessFile(tmpFile, "rw");
90 raf = new java.io.RandomAccessFile(tmpFile, "i");
97 tmpFile.delete();
108 File tmpFile = new File(fileName);
161 if (tmpFile.exists()) tmpFile.delete()
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
NativeDecoderTest.java 403 String tmpFile = base.getPath() + "/tmp.dat";
404 Log.i("@@@", "using tmp file " + tmpFile);
405 new File(tmpFile).delete();
406 ParcelFileDescriptor out = ParcelFileDescriptor.open(new File(tmpFile),
434 MediaPlayer player2 = MediaPlayer.create(mContext, Uri.parse("file://" + tmpFile));
438 new File(tmpFile).delete();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileInputStreamTest.java 245 File tmpFile = File.createTempFile("FileOutputStream", "tmp");
246 FileInputStream in = new FileInputStream(tmpFile);
254 tmpFile.delete();
  /frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerSession.java 758 final File tmpFile = File.createTempFile("inherit", ".tmp", toDir);
759 if (LOGD) Slog.d(TAG, "Copying " + fromFile + " to " + tmpFile);
760 if (!FileUtils.copyFile(fromFile, tmpFile)) {
761 throw new IOException("Failed to copy " + fromFile + " to " + tmpFile);
765 if (LOGD) Slog.d(TAG, "Renaming " + tmpFile + " to " + toFile);
766 if (!tmpFile.renameTo(toFile)) {
767 throw new IOException("Failed to rename " + tmpFile + " to " + toFile);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ScannerTest.java 90 File tmpFile = File.createTempFile("TestFileForScanner", ".tmp");
91 s = new Scanner(tmpFile);
94 assertTrue(tmpFile.delete());
97 s = new Scanner(tmpFile);
102 tmpFile = File.createTempFile("TestFileForScanner", ".tmp");
103 FileOutputStream fos = new FileOutputStream(tmpFile);
107 s = new Scanner(tmpFile);
109 tmpFile.delete();
126 File tmpFile = File.createTempFile("TestFileForScanner", ".tmp");
127 s = new Scanner(tmpFile, Charset.defaultCharset().name())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
feedTools.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-connector-wagon-0.9.0.M2.jar 
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.2.0/
sdklib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.4.0/
sdklib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.4.2/
sdklib-22.4.2.jar 

Completed in 1698 milliseconds

1 2 3