Searched defs:out (Results 76 - 100 of 910) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DLegacyHookPutFields.java108 public void write(ObjectOutput out) throws IOException { argument
109 out.writeObject(fields);
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DServiceDetailHelper.java37 public static void write(org.omg.CORBA.portable.OutputStream out, org.omg.CORBA.ServiceDetail that) { argument
38 out.write_ulong(that.service_detail_type);
40 out.write_long(that.service_detail.length);
41 out.write_octet_array(that.service_detail, 0, that.service_detail.length);
59 org.omg.CORBA.portable.OutputStream out = a.create_output_stream();
60 write(out, that);
61 a.read_value(out.create_input_stream(), type());
H A DServiceInformationHelper.java37 public static void write(org.omg.CORBA.portable.OutputStream out, org.omg.CORBA.ServiceInformation that) argument
39 out.write_long(that.service_options.length);
40 out.write_ulong_array(that.service_options, 0, that.service_options.length);
41 out.write_long(that.service_details.length);
43 org.omg.CORBA.ServiceDetailHelper.write(out, that.service_details[i]);
68 org.omg.CORBA.portable.OutputStream out = a.create_output_stream();
69 write(out, that);
70 a.read_value(out.create_input_stream(), type());
H A DServiceInformationHolder.java33 * that is used to store "out" and "inout" parameters in IDL methods.
34 * If an IDL method signature has an IDL <code>xxx</code> as an "out"
40 * value corresponding to the "out" value returned from the server.
79 * <code>value</code> field to the output stream <code>out</code>.
81 * @param out the <code>OutputStream</code> object that will contain
84 public void _write(org.omg.CORBA.portable.OutputStream out) { argument
85 org.omg.CORBA.ServiceInformationHelper.write(out, value);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciObject.java63 public void printOn(PrintStream out) { argument
64 getOop().printValueOn(out);
65 out.println();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DCallJavaNode.java60 public void dumpSpec(PrintStream out) { argument
62 out.print(" " + method().method().externalNameAndSignature());
64 super.dumpSpec(out);
H A DCallNode.java58 public void dumpSpec(PrintStream out) { argument
59 out.print(" ");
63 if (jvms != null) jvms.dumpSpec(out);
H A DCallRuntimeNode.java59 public void dumpSpec(PrintStream out) { argument
60 out.print(" #");
61 out.print(name());
62 super.dumpSpec(out);
H A DCallStaticJavaNode.java59 public void dumpSpec(PrintStream out) { argument
60 out.print(" Static ");
63 out.print(name);
71 out.print(" ");
73 super.dumpSpec(out);
H A DMachCallRuntimeNode.java59 public void dumpSpec(PrintStream out) { argument
60 out.printf("%s ", name());
61 super.dumpSpec(out);
H A DMachIfNode.java64 public void dumpSpec(PrintStream out) { argument
65 out.print("P=" + prob() + ", C=" + cnt());
H A DMachSafePointNode.java60 public void dumpSpec(PrintStream out) { argument
63 if (jvms != null) out.print(" !");
64 if (jvms == null) out.print("empty jvms");
68 out.print(" " + m.getMethodHolder().getName().asString().replace('/', '.') + "::" + m.getName().asString() + " @ bci:" + bci);
72 out.print(e);
H A DPhaseCFG.java60 public void dump(PrintStream out) { argument
66 blocks.at(i).dump(out);
H A DSafePointNode.java58 public void dumpSpec(PrintStream out) { argument
60 if (jvms != null) out.print(" !");
64 out.print(" " + m.getMethodHolder().getName().asString().replace('/', '.') + "::" + m.getName().asString() + " @ bci:" + bci);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DPMap.java35 run(System.out);
38 public void run(PrintStream out) { argument
39 run(out, getAgent().getDebugger());
42 public void run(PrintStream out, Debugger dbg) { argument
48 out.print(lo.getBase() + "\t");
49 out.print(lo.getSize()/1024 + "K\t");
50 out.println(lo.getName());
54 out.println("remote configuration is not yet implemented");
56 out.println("not yet implemented (debugger does not support CDebugger)!");
/openjdk7/jdk/src/share/classes/javax/sound/midi/spi/
H A DMidiFileWriter.java110 * @param out stream to which the file data should be written
118 public abstract int write(Sequence in, int fileType, OutputStream out) throws IOException; argument
126 * @param out external file to which the file data should be written
134 public abstract int write(Sequence in, int fileType, File out) throws IOException; argument
/openjdk7/jdk/src/share/classes/javax/sound/sampled/spi/
H A DAudioFileWriter.java119 * @param out stream to which the file data should be written
127 public abstract int write(AudioInputStream stream, AudioFileFormat.Type fileType, OutputStream out) throws IOException; argument
136 * @param out external file to which the file data should be written
144 public abstract int write(AudioInputStream stream, AudioFileFormat.Type fileType, File out) throws IOException; argument
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFEditorKit.java94 * @param out The stream to write to
98 * @param len The amount to write out.
103 public void write(OutputStream out, Document doc, int pos, int len) argument
108 RTFGenerator.writeDocument(doc, out);
140 * @param out The stream to write to
144 * @param len The amount to write out.
149 public void write(Writer out, Document doc, int pos, int len) argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DPersistenceDelegate.java61 * out in the Java Language Specification.
107 * @param out The stream to which this expression will be written.
109 * @throws NullPointerException if {@code out} is {@code null}
111 public void writeObject(Object oldInstance, Encoder out) { argument
112 Object newInstance = out.get(oldInstance);
114 out.remove(oldInstance);
115 out.writeExpression(instantiate(oldInstance, out));
118 initialize(oldInstance.getClass(), oldInstance, newInstance, out);
161 * @param out Th
166 instantiate(Object oldInstance, Encoder out) argument
206 initialize(Class<?> type, Object oldInstance, Object newInstance, Encoder out) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedOutputStream.java56 * @param out the underlying output stream.
58 public BufferedOutputStream(OutputStream out) { argument
59 this(out, 8192);
67 * @param out the underlying output stream.
71 public BufferedOutputStream(OutputStream out, int size) { argument
72 super(out);
82 out.write(buf, 0, count);
122 out.write(b, off, len);
134 * output bytes to be written out to the underlying output stream.
137 * @see java.io.FilterOutputStream#out
[all...]
H A DFilterWriter.java46 protected Writer out; field in class:FilterWriter
51 * @param out a Writer object to provide the underlying stream.
52 * @throws NullPointerException if <code>out</code> is <code>null</code>
54 protected FilterWriter(Writer out) { argument
55 super(out);
56 this.out = out;
65 out.write(c);
78 out.write(cbuf, off, len);
91 out
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationID.java167 * <code>out</code> passing this object's unique identifier
175 * invoked on <code>out</code> with the value returned by
178 * <code>RemoteRef</code> instance passing <code>out</code>
205 private void writeObject(ObjectOutputStream out) argument
208 out.writeObject(uid);
224 out.writeUTF(ref.getRefClass(out));
225 ref.writeExternal(out);
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRemoteServer.java81 * Log RMI calls to the output stream <code>out</code>. If
82 * <code>out</code> is <code>null</code>, call logging is turned off.
89 * @param out the output stream to which RMI calls should be logged
96 public static void setLog(java.io.OutputStream out) argument
98 logNull = (out == null);
99 UnicastServerRef.callLog.setOutputStream(out);
/openjdk7/jdk/src/share/classes/java/security/
H A DUnresolvedPermissionCollection.java155 * Writes the contents of the perms field out as a Hashtable
159 private void writeObject(ObjectOutputStream out) throws IOException { argument
160 // Don't call out.defaultWriteObject()
182 // Write out serializable fields
183 ObjectOutputStream.PutField pfields = out.putFields();
185 out.writeFields();
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DNodeChangeEvent.java87 private void writeObject(java.io.ObjectOutputStream out) argument

Completed in 417 milliseconds

1234567891011>>