Searched refs:writeObject (Results 1 - 25 of 95) sorted by relevance

1234

/libcore/luni/src/main/java/java/io/
H A DObjectOutput.java93 public void writeObject(Object obj) throws IOException; method in interface:ObjectOutput
/libcore/luni/src/main/java/java/util/
H A DInvalidPropertiesFormatException.java60 private void writeObject(ObjectOutputStream out) method in class:InvalidPropertiesFormatException
H A DHashSet.java186 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:HashSet
192 stream.writeObject(e);
/libcore/luni/src/test/java/libcore/java/io/
H A DObjectOutputStreamTest.java33 os.writeObject(s);
H A DOldAndroidSerializationTest.java37 oout.writeObject(new MySerializable());
H A DOldObjectOutputStreamPutFieldTest.java38 * from within the private {@code writeObject(ObjectOutputStream)} method of a
46 * {@code writeObject(ObjectOutputStream)} and uses all {@code putX} methods in
58 * is written when {@code Support_GetPutFields.writeObject(ObjectOutputStream)}
59 * and {@code Support_GetPutFieldsDeprecated.writeObject(ObjectOutputStream)} is
85 oos.writeObject(toSerialize);
110 oos.writeObject(toSerialize);
H A DOldObjectOutputStreamTest.java59 private void writeObject(ObjectOutputStream oos) throws IOException { method in class:OldObjectOutputStreamTest.SerializableTestHelper
240 * writeObject which simply read and write the first field but not the
252 oos.writeObject(new SerializableTestHelper("Gabba", "Jabba"));
267 oos.writeObject(o);
268 oos.writeObject(o);
270 oos.writeObject(o);
430 oos.writeObject(o);
/libcore/support/src/test/java/tests/util/
H A DFieldTestFileGenerator.java59 oos.writeObject(toSerialize);
74 oos.writeObject(toSerializeDeprecated);
89 oos.writeObject(toSerializeDefaulted);
/libcore/luni/src/main/java/java/security/
H A DGuardedObject.java70 private void writeObject(java.io.ObjectOutputStream out) throws IOException { method in class:GuardedObject
/libcore/luni/src/test/java/libcore/java/text/
H A DOldNumberFormatFieldTest.java54 out.writeObject(nfield);
55 out.writeObject(field);
H A DDecimalFormatSymbolsTest.java46 new ObjectOutputStream(out).writeObject(originalDfs);
H A DOldMessageFormatFieldTest.java59 out.writeObject(mfield);
60 out.writeObject(field);
/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLDSAPrivateKey.java221 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:OpenSSLDSAPrivateKey
229 stream.writeObject(params.getG());
230 stream.writeObject(params.getP());
231 stream.writeObject(params.getQ());
232 stream.writeObject(params.getX());
H A DOpenSSLDSAPublicKey.java181 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:OpenSSLDSAPublicKey
188 stream.writeObject(params.getG());
189 stream.writeObject(params.getP());
190 stream.writeObject(params.getQ());
191 stream.writeObject(params.getY());
H A DOpenSSLECPrivateKey.java162 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:OpenSSLECPrivateKey
168 stream.writeObject(getEncoded());
H A DOpenSSLECPublicKey.java165 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:OpenSSLECPublicKey
171 stream.writeObject(getEncoded());
H A DOpenSSLSecretKey.java130 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:OpenSSLSecretKey
/libcore/luni/src/main/java/java/util/prefs/
H A DNodeChangeEvent.java83 private void writeObject (ObjectOutputStream out) throws IOException { method in class:NodeChangeEvent
H A DPreferenceChangeEvent.java101 private void writeObject(ObjectOutputStream out) throws IOException { method in class:PreferenceChangeEvent
/libcore/luni/src/test/java/libcore/java/lang/annotation/
H A DAnnotationTypeMismatchExceptionTest.java41 new ObjectOutputStream(out).writeObject(original);
/libcore/luni/src/main/java/java/sql/
H A DSQLOutput.java226 public void writeObject(SQLData theObject) throws SQLException; method in interface:SQLOutput
/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectInputStreamTest.java56 oos.writeObject(testString);
76 oos.writeObject(String.class);
99 oos.writeObject(testString);
117 oos.writeObject(testString);
144 oos.writeObject(testString);
173 oos.writeObject(testString);
233 oos.writeObject(testString);
272 oos.writeObject(testString);
329 oos.writeObject(testString);
558 oos.writeObject(testStrin
[all...]
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java88 private void writeObject(ObjectOutputStream oos) throws IOException { method in class:ObjectInputStreamTest.SerializableTestHelper
238 oos.writeObject(s);
331 * writeObject which simply read and write the first field but not the
335 oos.writeObject(new SerializableTestHelper("Gabba", "Jabba"));
429 oos.writeObject(s);
632 out.writeObject(test);
683 oos.writeObject(String.class);
747 oos.writeObject(to1);
787 oos.writeObject(original);
943 out.writeObject(
[all...]
/libcore/luni/src/main/java/java/lang/
H A DStringBuilder.java696 private void writeObject(ObjectOutputStream out) throws IOException { method in class:StringBuilder
699 out.writeObject(getValue());
/libcore/luni/src/main/java/java/util/logging/
H A DLogRecord.java462 private void writeObject(ObjectOutputStream out) throws IOException { method in class:LogRecord
471 out.writeObject((element == null) ? null : element.toString());

Completed in 1870 milliseconds

1234