Searched refs:ostream (Results 1 - 25 of 121) sorted by relevance

12345

/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DStreamable.java46 * Marshals to <code>ostream</code> the value in the
49 * @param ostream the CDR OutputStream
51 void _write(OutputStream ostream); argument
/openjdk7/jdk/src/share/classes/sun/launcher/
H A DLauncherHelper.java117 PrintStream ostream = (printToStderr) ? System.err : System.out;
124 printVmSettings(ostream, initialHeapSize, maxHeapSize,
128 printProperties(ostream);
131 printLocale(ostream);
134 printVmSettings(ostream, initialHeapSize, maxHeapSize,
136 printProperties(ostream);
137 printLocale(ostream);
145 private static void printVmSettings(PrintStream ostream, argument
149 ostream.println(VM_SETTINGS);
151 ostream
175 printProperties(PrintStream ostream) argument
191 printPropertyValue(PrintStream ostream, String key, String value) argument
232 printLocale(PrintStream ostream) argument
245 printLocales(PrintStream ostream) argument
392 getMainClassFromJar(PrintStream ostream, String jarname) argument
429 abort(PrintStream ostream, Throwable t, String msgKey, Object... args) argument
490 getMainMethod(PrintStream ostream, Class<?> clazz) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DRequestMessage_1_0.java133 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
134 super.write(ostream);
137 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
141 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
143 ostream.write_ulong(this.request_id);
144 ostream.write_boolean(this.response_expected);
146 ostream.write_long(this.object_key.length);
147 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
148 ostream.write_string(this.operation);
150 ostream
[all...]
H A DLocateRequestMessage_1_0.java87 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
88 super.write(ostream);
89 ostream.write_ulong(this.request_id);
91 ostream.write_long(this.object_key.length);
92 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
H A DLocateRequestMessage_1_1.java89 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
90 super.write(ostream);
91 ostream.write_ulong(this.request_id);
93 ostream.write_long(this.object_key.length);
94 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
H A DCancelRequestMessage_1_0.java66 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
67 super.write(ostream);
68 ostream.write_ulong(this.request_id);
H A DCancelRequestMessage_1_1.java66 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
67 super.write(ostream);
68 ostream.write_ulong(this.request_id);
H A DCancelRequestMessage_1_2.java66 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
67 super.write(ostream);
68 ostream.write_ulong(this.request_id);
H A DRequestMessage_1_1.java139 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
140 super.write(ostream);
143 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
147 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
149 ostream.write_ulong(this.request_id);
150 ostream.write_boolean(this.response_expected);
157 ostream.write_octet(this.reserved[_i0]);
160 ostream.write_long(this.object_key.length);
161 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
162 ostream
[all...]
H A DFragmentMessage_1_1.java70 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
71 super.write(ostream);
H A DLocateRequestMessage_1_2.java86 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
87 super.write(ostream);
88 ostream.write_ulong (this.request_id);
90 TargetAddressHelper.write(ostream, this.target);
H A DRequestMessage_1_2.java163 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
164 super.write(ostream);
165 ostream.write_ulong(this.request_id);
166 ostream.write_octet(this.response_flags);
173 ostream.write_octet(this.reserved[_i0]);
176 TargetAddressHelper.write(ostream, this.target);
177 ostream.write_string(this.operation);
180 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
184 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
192 ((CDROutputStream)ostream)
[all...]
H A DMessage_1_0.java134 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
135 ostream.write_long(this.magic);
137 this.GIOP_version.write(ostream);
138 ostream.write_boolean(this.byte_order);
139 ostream.write_octet(this.message_type);
140 ostream.write_ulong(this.message_size);
H A DMessage_1_1.java188 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
189 ostream.write_long(this.magic);
191 this.GIOP_version.write(ostream);
192 ostream.write_octet(this.flags);
193 ostream.write_octet(this.message_type);
194 ostream.write_ulong(this.message_size);
H A DFragmentMessage_1_2.java98 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
99 super.write(ostream);
100 ostream.write_ulong(this.request_id);
H A DMessage_1_2.java70 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
72 super.write(ostream);
78 super.write(ostream);
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DArrayFields.java43 FileOutputStream ostream = null;
46 ostream = new FileOutputStream("piotest4.tmp");
47 ObjectOutputStream p = new ObjectOutputStream(ostream);
80 if (ostream != null) ostream.close();
H A DCircularList.java40 FileOutputStream ostream = null;
42 ostream = new FileOutputStream("piotest7.tmp");
43 ObjectOutputStream p = new ObjectOutputStream(ostream);
65 if (ostream != null) ostream.close();
H A DSerializeWithException.java56 ExceptionOutputStream ostream;
64 ostream = new ExceptionOutputStream();
65 ostream.setExceptionOffset(offset);
66 ObjectOutputStream p = new ObjectOutputStream(ostream);
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.hpp106 void print(ostream&);
107 friend ostream& operator<< (ostream&, FileBuffRegion&);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DTypeCodeImplHelper.java71 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.TypeCode value) argument
73 ostream.write_TypeCode (value);
76 public static void write (org.omg.CORBA.portable.OutputStream ostream, TypeCodeImpl value) argument
78 ostream.write_TypeCode (value);
/openjdk7/hotspot/src/share/vm/libadt/
H A Dport.cpp114 ostream &ostream::operator << (const void *ptr)
119 /*ostream &operator << (ostream &os, const void *ptr)
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DBooleanSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, boolean[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_boolean_array (value, 0, value.length);
H A DCharSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, char[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_char_array (value, 0, value.length);
H A DDoubleSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, double[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_double_array (value, 0, value.length);

Completed in 84 milliseconds

12345