HomeSort by relevance Sort by last modified time
    Searched full:fos1 (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/test/java/libcore/java/io/
FileOutputStreamTest.java 30 FileOutputStream fos1 = new FileOutputStream(tmp); local
31 FileOutputStream fos2 = new FileOutputStream(fos1.getFD());
46 fos1.write(1);
49 fos1.close();
51 fos1.write(1);
56 fos1.write(new byte[1], 0, 1);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DeflaterOutputStreamTest.java 241 FileOutputStream fos1 = new FileOutputStream(f1); local
242 DeflaterOutputStream dos = new DeflaterOutputStream(fos1);
261 // Test for writing to FileOutputStream fos1, which should be open.
262 fos1.write(("testing").getBytes());
277 // dos.close() won't close fos1 because it has been re-assigned to
279 fos1.close();
328 FileOutputStream fos1 = new FileOutputStream(f1); local
329 DeflaterOutputStream dos1 = new DeflaterOutputStream(fos1);

Completed in 799 milliseconds