OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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);
62
assertFalse(
fos1
.getFD().valid());
/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 2875 milliseconds