Searched defs:tmpFile (Results 1 - 3 of 3) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
H A DMappedByteBufferTest.java37 File tmpFile, emptyFile; field in class:MappedByteBufferTest
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
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DChannelsTest.java65 private File tmpFile; field in class:ChannelsTest
70 tmpFile = File.createTempFile("test","tmp");
71 tmpFile.deleteOnExit();
85 tmpFile.delete();
91 this.fouts = new FileOutputStream(tmpFile);
133 this.fins = new FileInputStream(tmpFile);
160 this.fins = new FileInputStream(tmpFile);
207 this.fouts = new FileOutputStream(tmpFile);
231 this.fouts = new FileOutputStream(tmpFile);
242 this.fins = new FileInputStream(tmpFile);
[all...]
/libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
H A DCertBlacklistTest.java42 private File tmpFile; field in class:CertBlacklistTest
113 tmpFile = File.createTempFile("test", "");
116 tmpFile.delete();
122 tmpFile = File.createTempFile("test", "");
128 tmpFile.delete();
176 return getPubkeyBlacklist(tmpFile.getCanonicalPath());
180 return getSerialBlacklist(tmpFile.getCanonicalPath());
184 FileOutputStream out = new FileOutputStream(tmpFile);
234 CertBlacklist bl = new CertBlacklist(tmpFile.getCanonicalPath(),
250 CertBlacklist bl = new CertBlacklist(tmpFile
[all...]

Completed in 189 milliseconds