Home
last modified time | relevance | path

Searched refs:fout (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/test/java/io/PrintStream/
DEncodingTest.java112 FileOutputStream fout = new FileOutputStream(path); in getPrintStream() local
113 out = new PrintStream(fout, AUTOFLUSH, csn); in getPrintStream()
125 FileOutputStream fout = new FileOutputStream(path); in getPrintStream() local
126 out = new PrintStream(fout, AUTOFLUSH, charset); in getPrintStream()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DFileLockTest.java194 FileOutputStream fout = new FileOutputStream(file); in test_release() local
195 FileChannel fileChannel = fout.getChannel(); in test_release()
206 fout = new FileOutputStream(file); in test_release()
207 fileChannel = fout.getChannel(); in test_release()
/libcore/ojluni/src/test/java/io/PrintWriter/
DEncodingTest.java128 FileOutputStream fout = new FileOutputStream(path); in getWriter() local
129 out = new PrintWriter(fout, AUTOFLUSH, charset); in getWriter()
/libcore/ojluni/src/main/java/java/util/logging/
DFileHandler.java211 FileOutputStream fout = new FileOutputStream(fname.toString(), append); in open() local
212 BufferedOutputStream bout = new BufferedOutputStream(fout); in open()