Home
last modified time | relevance | path

Searched defs:fos (Results 1 – 25 of 39) sorted by relevance

12

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DFileOutputStreamTest.java37 private FileOutputStream fos; field in FileOutputStreamTest
293 try (FileOutputStream fos = new FileOutputStream(tmpfile)) { in test_getChannel()
305 FileOutputStream fos = new FileOutputStream(tmpfile, true); in test_getChannel_Append() local
326 FileOutputStream fos = new FileOutputStream(tmpfile, false); in test_getChannel_UnAppend() local
347 FileOutputStream fos = new FileOutputStream(tmpfile, false); in test_getChannel_Unappend_Unappend() local
361 FileOutputStream fos = new FileOutputStream(tmpfile, false); in test_getChannel_Unappend_Append() local
375 FileOutputStream fos = new FileOutputStream(tmpfile, true); in test_getChannel_Append_Unappend() local
389 FileOutputStream fos = new FileOutputStream(tmpfile, true); in test_getChanne_Append_Append() local
DFileDescriptorTest.java34 FileOutputStream fos = null; in test_sync() local
76 FileOutputStream fos = null; in test_valid() local
DFileTest.java305 FileOutputStream fos = new FileOutputStream(f); in test_canRead() local
320 FileOutputStream fos = new FileOutputStream(f); in test_canWrite() local
627 FileOutputStream fos = new FileOutputStream(f); in test_delete() local
696 FileOutputStream fos = new FileOutputStream(f); in test_exists() local
775 FileOutputStream fos = new FileOutputStream(f); in test_getCanonicalFile() local
847 FileOutputStream fos = new FileOutputStream(f1); in test_getCanonicalPath() local
1111 FileOutputStream fos = new FileOutputStream(f); in test_isFile() local
1142 FileOutputStream fos = new FileOutputStream(f); in test_lastModified() local
1158 FileOutputStream fos = new FileOutputStream(f); in test_length() local
1209 FileOutputStream fos = new FileOutputStream(file); in test_list() local
[all …]
DSyncFailedExceptionTest.java35 FileOutputStream fos = new FileOutputStream(f.getAbsolutePath()); in test_ConstructorLjava_lang_String() local
DRandomAccessFileTest.java211 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read() local
226 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read$B() local
245 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read$BII() local
894 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read_$BII_IndexOutOfBoundsException() local
913 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read_$BII_IOException() local
928 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read_$B_IOException() local
DFileInputStreamTest.java98 FileOutputStream fos = null; in setUp() local
122 FileOutputStream fos = new FileOutputStream(fileName); in test_ConstructorLjava_io_FileDescriptor() local
DOpenRandomFileTest.java40 FileOutputStream fos = new FileOutputStream(file); in testOpenNonEmptyFile() local
DFilterInputStreamTest.java101 OutputStream fos = new FileOutputStream(temp.getAbsolutePath()); in setUp() local
DFileWriterTest.java35 private FileOutputStream fos; field in FileWriterTest
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DDeflaterOutputStreamTest.java94 FileOutputStream fos = new FileOutputStream(f1); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_Deflater() local
121 FileOutputStream fos = new FileOutputStream(f1); in test_ConstructorLjava_io_OutputStream() local
144 FileOutputStream fos = new FileOutputStream(f1); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_DeflaterI() local
201 FileOutputStream fos = new FileOutputStream(f1); in test_close() local
307 FileOutputStream fos = new FileOutputStream(f1); in test_writeI() local
429 FileOutputStream fos = new FileOutputStream(f1); in test_deflate() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
DJarOutputStreamTest.java43 FileOutputStream fos = new FileOutputStream(fooJar); in test_JarOutputStreamLjava_io_OutputStreamLjava_util_jar_Manifest() local
70 FileOutputStream fos = new FileOutputStream(fooJar); in test_JarOutputStreamLjava_io_OutputStream() local
/libcore/luni/src/test/java/libcore/java/io/
DFileInputStreamTest.java59 FileOutputStream fos = new FileOutputStream(mOutFd); in run() local
110 FileOutputStream fos = new FileOutputStream(tmp); in makeFile() local
280 try (FileOutputStream fos = new FileOutputStream(file)) { in allocateEmptyFile()
289 try (FileOutputStream fos = new FileOutputStream(file)) { in allocateEmptyFile()
DFileOutputStreamTest.java69 … FileOutputStream fos = new FileOutputStream(File.createTempFile("FileOutputStreamTest", "tmp")); in testClose() local
DOldFilterInputStreamTest.java296 java.io.OutputStream fos = new java.io.FileOutputStream(fileName); in setUp() local
DOldRandomAccessFileTest.java292 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read$B() local
325 FileOutputStream fos = new java.io.FileOutputStream(fileName); in test_read$BII() local
/libcore/luni/src/test/java/libcore/java/nio/channels/
DFileChannelTest.java123 FileOutputStream fos = new FileOutputStream(tmp, true); in test_append() local
243 FileOutputStream fos = new FileOutputStream(tmp); in test_close_fromFileDescriptor() local
274 try (FileOutputStream fos = new FileOutputStream(tmpFile)) { in test_closeGuardSupport_open_with_append()
283 FileOutputStream fos = new FileOutputStream(tmp, true); in createFileContainingBytes() local
DFileIOInterruptTest.java143 FileOutputStream fos = new FileOutputStream(fifoFile); in testStreamWrite_exceptionWhenAlreadyClosed() local
162 FileOutputStream fos = new FileOutputStream(fifoFile); in testStreamWrite_exceptionOnCloseWhenBlocked() local
357 FileOutputStream fos = new FileOutputStream(fifoFile); in testChannelWrite_exceptionWhenAlreadyInterrupted() local
639 private FileOutputStream fos; field in FileIOInterruptTest.FifoWriter
DOldFileChannelTest.java178 FileOutputStream fos = new FileOutputStream(file); in writeDataToFile() local
196 FileOutputStream fos = new FileOutputStream(file); in writeLargeDataToFile() local
DAsynchronousFileChannelTest.java143 try (FileOutputStream fos = new FileOutputStream(temp)) { in createTemporaryFile()
157 try (FileOutputStream fos = new FileOutputStream(temp)) { in createTemporaryFile()
/libcore/support/src/test/java/tests/util/
DFieldTestFileGenerator.java42 FileOutputStream fos = null; in main() local
/libcore/luni/src/test/java/libcore/dalvik/system/
DBlockGuardTest.java113 try (FileOutputStream fos = new FileOutputStream(tmpFile)) { in testFileInputStream()
149 FileOutputStream fos = new FileOutputStream(f); in testFileOutputStream() local
196 try (FileOutputStream fos = new FileOutputStream(f)) { in testUnbufferedIO()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DGenericSignatureFormatErrorTest.java59 OutputStream fos = new FileOutputStream(tf); in test_signatureFormatError() local
/libcore/luni/src/test/java/libcore/java/util/zip/
DOldZipFileTest.java149 FileOutputStream fos = new FileOutputStream(tempFile); in setUp() local
DGZIPInputStreamTest.java182 FileOutputStream fos = new FileOutputStream(f, true /* append */); in testMultipleMembersWithCustomBufferSize() local
/libcore/luni/src/test/java/libcore/java/util/jar/
DOldManifestTest.java125 FileOutputStream fos = new FileOutputStream(f); in test_writeLjava_io_OutputStream() local

12