Searched defs:out (Results 26 - 50 of 910) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DValueHandlerMultiFormat.java67 void writeValue(org.omg.CORBA.portable.OutputStream out, argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DObjectHistogram.java37 run(System.out, System.err);
40 public void run(PrintStream out, PrintStream err) { argument
49 histogram.printOn(out);
/openjdk7/jdk/src/share/classes/javax/print/
H A DStreamPrintService.java67 * @param out stream to which to send formatted print data.
69 protected StreamPrintService(OutputStream out) { argument
70 this.outStream = out;
/openjdk7/jdk/src/share/classes/javax/sql/
H A DCommonDataSource.java78 * @param out the new log writer; to disable logging, set to null
83 void setLogWriter(java.io.PrintWriter out) throws SQLException; argument
/openjdk7/jdk/src/share/classes/java/io/
H A DFilterOutputStream.java49 protected OutputStream out; field in class:FilterOutputStream
55 * @param out the underlying output stream to be assigned to
56 * the field <tt>this.out</tt> for later use, or
60 public FilterOutputStream(OutputStream out) { argument
61 this.out = out;
69 * that is, it performs <tt>out.write(b)</tt>.
77 out.write(b);
131 * to be written out to the stream.
137 * @see java.io.FilterOutputStream#out
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DExtension.java96 * @param out the output stream
98 * @exception NullPointerException if <code>out</code> is <code>null</code>.
100 void encode(OutputStream out) throws IOException; argument
/openjdk7/jdk/src/share/classes/java/util/
H A DInvalidPropertiesFormatException.java74 private void writeObject(java.io.ObjectOutputStream out) argument
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DCategoryClassFile.java40 @Override public void writeBeginning(final PrintStream out) { argument
42 out.format("\tpublic %1$s(final %2$s obj, final %3$s runtime) {\n" +
46 super.writeBeginning(out);
H A DOpaqueClassFile.java40 @Override public void writeBeginning(PrintStream out){ argument
41 out.println("\t// " + opaque.type);
42 out.println("\t// " + opaque.type.getJType());
43 out.println("");
44 out.println("\tpublic " + className + "(" + Pointer.class.getName() + "<?> ptr){");
45 out.println("\t\tsuper(ptr);");
46 out.println("\t}");
47 out.println("");
48 out.println("\tpublic " + className + "(long ptr){");
49 out
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DNoCloseOutputStream.java38 public NoCloseOutputStream(OutputStream out) { argument
39 super(out);
/openjdk7/jdk/test/com/oracle/net/
H A DSanity.java48 System.out.format("Testing %s: %s\n", link, addr.getHostAddress());
127 static void testConnection(OutputStream out, InputStream in) argument
131 out.write(msg);
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestKeyMaterial.java117 System.out.print(".");
150 System.out.println();
151 System.out.println("OK: " + n + " tests");
154 private static void match(int lineNumber, byte[] out, Object res) argument
156 if ((out == null) || (res == null)) {
157 if (out != res) {
171 if (Arrays.equals(out, b) == false) {
/openjdk7/jdk/test/java/io/OutputStream/
H A DWriteParams.java38 public static void doTest(OutputStream out) throws Exception { argument
55 out.write(b , off[i] , len[i]);
60 " ) on " + out + "\nb.length = 32");
68 off[i] + " " + len[i] + " ) on " + out +
76 " ) on " + out + "\nb.length = 32");
84 throw new RuntimeException(out + " Failed " + numBad + " cases");
86 System.err.println("Successfully completed bounds tests on " + out);
91 public static void doTest1(OutputStream out) throws Exception { argument
94 out.write(b, 0, 32);
96 System.err.println("SuccessFully completed null b test on " + 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...]
/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/test/java/io/Serializable/NPEProvoker/
H A DNPEProvoker.java52 public void writeExternal(ObjectOutput out) throws IOException { argument
53 out.writeObject(test);
/openjdk7/jdk/test/java/io/Serializable/PutField/
H A DWrite.java53 private void writeObject(ObjectOutputStream out) throws IOException { argument
54 ObjectOutputStream.PutField fields = out.putFields();
64 out.writeFields();
H A DWrite2.java47 private void writeObject(ObjectOutputStream out) throws IOException { argument
48 ObjectOutputStream.PutField fields = out.putFields();
51 fields.write(out);
/openjdk7/jdk/test/java/io/Serializable/optionalDataEnd/
H A DOptionalDataEnd.java40 private void writeObject(ObjectOutputStream out) throws IOException { argument
41 out.defaultWriteObject();
43 out.writeObject(new Integer(i));
/openjdk7/jdk/test/java/io/Serializable/replaceWithNull/
H A DReplaceWithNull.java33 public MyObjectOutputStream(OutputStream out) throws IOException { argument
34 super(out);
47 MyObjectOutputStream out =
49 out.writeObject(a); //raised NullPointerException.
50 out.close();
/openjdk7/jdk/test/java/io/Serializable/skipWriteObject/
H A DWrite.java48 private void writeObject(ObjectOutputStream out) throws IOException { argument
49 out.defaultWriteObject();
/openjdk7/jdk/test/java/io/Serializable/wrongReturnTypes/
H A DWrite.java46 private Object writeObject(ObjectOutputStream out) throws IOException { argument
48 out.defaultWriteObject();
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DConcurrentRead.java27 * @summary Test that Process input/out can be concurrently read/written
48 OutputStream out = p.getOutputStream();
50 Thread t1 = new WriterThread(out, in);
52 Thread t2 = new WriterThread(out, in);
61 OutputStream out; field in class:ConcurrentRead.WriterThread
63 WriterThread(OutputStream out, InputStream in) { argument
64 this.out = out;
69 out.write('a');
70 out
[all...]
/openjdk7/jdk/test/java/lang/instrument/
H A DNativeMethodPrefixApp.java43 public void run(String args[], PrintStream out) throws Exception { argument
/openjdk7/jdk/test/java/nio/charset/spi/
H A DTest.java31 private static PrintStream out = System.err; field in class:Test
43 out.println(csn + " --> " + cs.getClass().getName());
44 out.println(" " + cs.name() + " " + cs.aliases());
65 out.println(csn + " not supported, as expected");
73 out.println("Default: "
76 out.print("Available:");
78 out.print(" " + (String)i.next());
79 out.println();

Completed in 796 milliseconds

1234567891011>>