Searched refs:out (Results 101 - 125 of 5004) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpOutputStream.java38 protected OutputStream out; field in class:HttpOutputStream
45 * @param out the OutputStream to send response to
47 public HttpOutputStream(OutputStream out) { argument
49 this.out = out;
65 DataOutputStream dos = new DataOutputStream(out);
H A DHttpReceiveSocket.java62 * @param out the OutputStream to use for this socket (can be null)
64 public HttpReceiveSocket(Socket socket, InputStream in, OutputStream out) argument
67 super(socket, in, out);
71 this.out = (out != null ? out :
103 DataOutputStream dos = new DataOutputStream(out);
107 out = new HttpOutputStream(out);
109 return out;
[all...]
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DProxyTest.java60 PrintWriter out; field in class:ProxyTest.HttpProxyServer.HttpProxyHandler
72 out = new PrintWriter(client.getOutputStream(), true);
92 out.close();
101 out.println("HTTP/1.0 200 OK");
102 out.println("Server: Squid/2.4.STABLE6");
103 out.println("Mime-Version: 1.0");
104 out.println("Date: Fri, 26 Jul 2002 17:56:00 GMT");
105 out.println("Content-Type: text/html");
106 out.println("Last-Modified: Fri, 26 Jul 2002 01:49:57 GMT");
107 out
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DGeneratedClassFile.java50 final PrintStream out = open(parentDir);
51 out.println("package " + pkg + ";");
52 out.println();
53 out.print("public " + (isFinal() ? "final" : "") + " class " + className);
54 if(genericArgs != null) out.print("<" + genericArgs + ">");
55 if (superClass != null) out.print(" extends " + superClass);
56 out.println(" {");
57 writeBeginning(out);
58 writeBody(out);
59 writeEnd(out);
65 writeBeginning(final PrintStream out) argument
69 writeBody(final PrintStream out) argument
73 writeEnd(final PrintStream out) argument
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/
H A DCloseSocket.java45 System.out.println("Server accepted connection");
50 System.out.println("Server closed socket, done.");
52 System.out.println("Server exception:");
59 System.out.println("Client established TCP connection");
62 System.out.println("Starting handshake...");
64 System.out.println("ERROR: no exception");
67 System.out.println("Failed as expected: " + e);
70 System.out.println("Trying read...");
73 System.out.println("ERROR: no exception, read: " + b);
76 System.out
[all...]
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/FixingJavadocs/
H A DJavaxURLNulls.java60 System.out.print("Caught proper exception: ");
61 System.out.println(e.getMessage());
67 System.out.print("Caught proper exception: ");
68 System.out.println(e.getMessage());
74 System.out.print("Caught proper exception: ");
75 System.out.println(e.getMessage());
81 System.out.print("Caught proper exception: ");
82 System.out.println(e.getMessage());
88 System.out.print("Caught proper exception: ");
89 System.out
[all...]
/openjdk7/jdk/test/sun/tools/jrunscript/
H A DjrunscriptTest.sh31 # @summary Test that output of 'jrunscript' interactive matches the repl.out file
42 rm -f jrunscriptTest.out 2>/dev/null
43 ${JRUNSCRIPT} > jrunscriptTest.out 2>&1 <<EOF
48 java.lang.System.out.println('hello world from script');
52 $golden_diff jrunscriptTest.out ${TESTSRC}/repl.out
56 rm -f jrunscriptTest.out 2>/dev/null
60 rm -f jrunscriptTest.out 2>/dev/null
61 ${JRUNSCRIPT} -l js > jrunscriptTest.out 2>&1 <<EOF
66 java.lang.System.out
[all...]
/openjdk7/jdk/test/java/lang/RuntimePermission/
H A DExitVM.java40 System.out.println("Testing RuntimePermission(\"exitVM.*\")");
41 System.out.println(" testing getName()");
46 System.out.println
51 System.out.println
56 System.out.println
61 System.out.println
66 System.out.println
71 System.out.println("Testing RuntimePermission(\"exitVM\")");
72 System.out.println
77 System.out
[all...]
/openjdk7/hotspot/test/compiler/6772683/
H A DInterruptedTest.java37 System.out.println("Worker thread: running...");
40 System.out.println("Worker thread: bye");
43 System.out.println("Main thread: starts a worker thread...");
45 System.out.println("Main thread: waits at most 5s for the worker thread to die...");
49 System.out.println("Main thread: interrupts the worker thread...");
52 System.out.println("Main thread: worker thread is interrupted");
55 System.out.println("Main thread: waits for the worker thread to die...");
59 System.out.println("Main thread: the worker thread dod not die");
62 System.out.println("Main thread: bye");
/openjdk7/jdk/test/com/sun/jdi/
H A DControlFlow.java16 System.out.println("if, no else");
20 System.out.println("if branch");
28 System.out.println("else branch");
34 System.out.println("caught exception");
36 System.out.println("finally");
41 System.out.println("synchronized");
46 System.out.println("Loop iteration: " + (i+1) + "/" + n);
59 System.out.println("switch case");
75 System.out.println("switch default");
H A DMethodCallsReflection.java39 System.out.println("Called staticCaller1");
43 System.out.println("Called staticCaller2");
47 System.out.println("Called staticCaller3");
57 System.out.println("Called instanceCaller1");
62 System.out.println("Called instanceCaller2");
67 System.out.println("Called instanceCaller3");
78 System.out.println("Called staticExceptionCallee");
83 System.out.println("Called instanceExceptionCallee");
91 System.out.println("Caught expected IndexOutOfBoundsException from instanceCaller1()");
97 System.out
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DNumberConstantData.java53 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { argument
55 out.writeByte(CONSTANT_INTEGER);
56 out.writeInt(num.intValue());
58 out.writeByte(CONSTANT_LONG);
59 out.writeLong(num.longValue());
61 out.writeByte(CONSTANT_FLOAT);
62 out.writeFloat(num.floatValue());
64 out.writeByte(CONSTANT_DOUBLE);
65 out.writeDouble(num.doubleValue());
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec_naf.c56 * of bits of out, in is the original scalar, and w is the window size.
61 ec_compute_wNAF(signed char *out, int bitsize, const mp_int *in, int w) argument
77 out[i] = MP_DIGIT(&k, 0) & mask;
78 if (out[i] >= twowm1)
79 out[i] -= 2 * twowm1;
81 /* Subtract off out[i]. Note mp_sub_d only works with
83 if (out[i] >= 0) {
84 mp_sub_d(&k, out[i], &k);
86 mp_add_d(&k, -(out[i]), &k);
89 out[
[all...]
/openjdk7/jdk/test/java/io/PipedInputStream/
H A DConstructors.java33 static PipedOutputStream out; field in class:Constructors
41 System.out.println("Pipe Input stream reading...");
43 System.out.println("read: " + read);
49 System.out.println("Pipe Input stream exception:");
52 System.out.println("Pipe Input stream done.");
59 out = new PipedOutputStream(in);
62 out = new PipedOutputStream();
63 in = new PipedInputStream(out, pipeSize);
73 System.out.println("Pipe Output stream started.");
74 out
[all...]
H A DWriterLoop.java35 static PipedOutputStream out; field in class:WriterLoop
40 System.out.println("Writer started.");
44 out.write(new byte[64*1024]);
48 System.out.println("Writer exception:");
51 System.out.println("Writer done.");
57 out = new PipedOutputStream(in);
62 System.out.println("Reader reading...");
65 System.out.println("Reader closing stream...");
68 System.out.println("Reader sleeping 3 seconds...");
71 System.out
[all...]
/openjdk7/jdk/test/java/io/PipedReader/
H A DConstructors.java33 static PipedWriter out; field in class:Constructors
41 System.out.println("Reader reading...");
43 System.out.println("read: " + read);
49 System.out.println("Reader exception:");
52 System.out.println("Reader done.");
59 out = new PipedWriter(in);
62 out = new PipedWriter();
63 in = new PipedReader(out, pipeSize);
73 System.out.println("Writer started.");
74 out
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DFinalizerSummaryQuery.java43 out.println("<p align='center'>");
44 out.println("<b><a href='/'>All Classes (excluding platform)</a></b>");
45 out.println("</p>");
92 out.println("<p align='center'>");
93 out.println("<b>");
94 out.println("Total ");
96 out.print("<a href='/finalizerObjects/'>instances</a>");
98 out.print("instances");
100 out.println(" pending finalization: ");
101 out
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DQPEncoderStream.java40 * is done as the bytes are written out.
53 * @param out the output stream
58 public QPEncoderStream(OutputStream out, int bytesPerLine) { argument
59 super(out);
68 * @param out the output stream
70 public QPEncoderStream(OutputStream out) { argument
71 this(out, 76);
139 * to be encoded out to the stream.
143 out.flush();
147 * Forces any buffered output bytes to be encoded out t
[all...]
/openjdk7/jdk/test/java/lang/management/PlatformLoggingMXBean/
H A DPlatformLoggingMXBeanTest.java57 System.out.println( "***************************************************" );
58 System.out.println( "********** PlatformLoggingMXBean Unit Test **********" );
59 System.out.println( "***************************************************" );
60 System.out.println( "" );
61 System.out.println( "*******************************" );
62 System.out.println( "*********** Phase 1 ***********" );
63 System.out.println( "*******************************" );
64 System.out.println( " Creating MBeanServer " );
65 System.out.print( " Register PlatformLoggingMXBean: " );
74 System.out
[all...]
/openjdk7/jdk/test/java/util/logging/
H A DLoggingMXBeanTest.java52 System.out.println( "***************************************************" );
53 System.out.println( "********** LoggingMXBean Unit Test **********" );
54 System.out.println( "***************************************************" );
55 System.out.println( "" );
56 System.out.println( "*******************************" );
57 System.out.println( "*********** Phase 1 ***********" );
58 System.out.println( "*******************************" );
59 System.out.println( " Creating MBeanServer " );
60 System.out.print( " Register LoggingMXBean: " );
70 System.out
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DFlagDumper.java34 PrintStream out = System.out;
36 out.println("Command Flags info not available! (use 1.4.1_03 or later)");
39 out.print(flags[f].getName());
40 out.print(" = ");
41 out.println(flags[f].getValue());
/openjdk7/jdk/src/share/classes/com/sun/tools/example/trace/
H A DStreamRedirectThread.java48 private final Writer out; field in class:StreamRedirectThread
56 * @param out Stream to copy to
58 StreamRedirectThread(String name, InputStream in, OutputStream out) { argument
61 this.out = new OutputStreamWriter(out);
74 out.write(cbuf, 0, count);
76 out.flush();
/openjdk7/jdk/test/java/io/Serializable/verifyDynamicObjHandleTable/
H A DVerifyDynamicObjHandleTable.java36 private void writeObject(ObjectOutputStream out) throws IOException { argument
45 out.defaultWriteObject();
56 ObjectOutputStream out =
59 out.writeObject(new A());
65 // written out by reference.
68 out.writeObject(iter.next());
71 out.close();
/openjdk7/jdk/test/java/io/Serializable/writeObjectMemory/
H A DWriteObjectMemory.java38 private void writeObject(ObjectOutputStream out) throws IOException { argument
47 out.defaultWriteObject();
58 ObjectOutputStream out =
61 out.writeObject(new A());
67 // written out by reference.
70 out.writeObject(iter.next());
73 out.close();
/openjdk7/jdk/test/java/lang/instrument/
H A DRetransformApp.java31 (new RetransformApp()).run(args, System.out);
38 public void run(String args[], PrintStream out) throws Exception { argument
39 out.println("start");
45 out.println("undo");
52 out.println("end");
54 out.println("Instrumentation succeeded.");

Completed in 287 milliseconds

1234567891011>>