Searched defs:fos (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jdk/test/java/lang/instrument/PremainClass/ |
H A D | CreateFiles.java | 36 static void output(FileOutputStream fos, String s) throws Exception { argument 37 fos.write( s.getBytes("UTF8") ); 38 fos.write( "\n".getBytes("UTF8") ); 43 FileOutputStream fos; 48 fos = new FileOutputStream(f); 49 output(fos, "import java.lang.instrument.Instrumentation;" ); 50 output(fos, "public class " +name + " {" ); 51 output(fos, " public static void premain(String ops, Instrumentation ins) {" ); 52 output(fos, " System.out.println(\"premain running\"); "); 53 output(fos, " }"); [all...] |
/openjdk7/jdk/test/java/io/pathNames/unix/ |
H A D | TrailingSlash.java | 47 static void go(String fns, boolean fis, boolean raf, boolean fos) argument 80 check("FileOutputStream", fns, fos, threw);
|
/openjdk7/jdk/test/java/net/ResponseCache/ |
H A D | ResponseCacheTest.java | 222 FileOutputStream fos; field in class:ResponseCacheTest.MyCacheRequest 226 fos = new FileOutputStream(file); 227 streams.add(fos); 229 ObjectOutputStream oos = new ObjectOutputStream(fos); 236 return fos;
|
/openjdk7/jdk/src/share/classes/sun/net/smtp/ |
H A D | SmtpClient.java | 217 SmtpPrintStream (OutputStream fos, SmtpClient cl) throws UnsupportedEncodingException { argument 218 super(fos, false, cl.getEncoding());
|
Completed in 53 milliseconds