Searched refs:readObject (Results 1 - 25 of 108) sorted by relevance

12345

/libcore/luni/src/test/java/tests/api/java/io/
H A DComputeSerialVersionUIDTest.java14 .readObject();
16 .readObject();
18 .readObject();
20 .readObject();
22 .readObject();
24 .readObject();
32 .readObject();
34 .readObject();
36 .readObject();
38 .readObject();
[all...]
/libcore/luni/src/main/java/java/io/
H A DObjectInput.java88 public Object readObject() throws ClassNotFoundException, IOException; method in interface:ObjectInput
/libcore/luni/src/main/java/java/util/
H A DInvalidPropertiesFormatException.java65 private void readObject(ObjectInputStream in) method in class:InvalidPropertiesFormatException
H A DHashSet.java197 private void readObject(ObjectInputStream stream) throws IOException, method in class:HashSet
205 E key = (E) stream.readObject();
/libcore/luni/src/main/java/javax/crypto/
H A DSealedObject.java59 private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { method in class:SealedObject
66 sealAlg = (String) s.readObject();
67 paramsAlg = (String) s.readObject();
172 return ois.readObject();
223 return ois.readObject();
267 return ois.readObject();
/libcore/luni/src/test/java/libcore/java/io/
H A DOldObjectInputStreamGetFieldTest.java35 * the private {@code readObject(ObjectInputStream)} method of a class that
44 * {@code readObject(ObjectInputStream)} to read data from an input stream.
71 Support_GetPutFields object = (Support_GetPutFields) ois.readObject();
81 (Support_GetPutFieldsDefaulted) ois.readObject();
99 Support_GetPutFields object = (Support_GetPutFields) ois.readObject();
113 (Support_GetPutFieldsDefaulted) ois.readObject();
123 Support_GetPutFields object = (Support_GetPutFields) ois.readObject();
239 Support_GetPutFields object = (Support_GetPutFields) ois.readObject();
H A DOldAndroidSerializationTest.java41 Object o = new ObjectInputStream(bin).readObject();
H A DOldObjectOutputStreamTest.java50 private void readObject(ObjectInputStream ois) throws IOException { method in class:OldObjectOutputStreamTest.SerializableTestHelper
239 * two fields (Strings) and simple implementations of readObject and
255 sth = (SerializableTestHelper) (ois.readObject());
282 assertEquals("Test 2: Incorrect object read.", o, ois.readObject());
283 assertEquals("Test 3: Incorrect object read.", o, ois.readObject());
284 assertEquals("Test 4: Incorrect object read.", o, ois.readObject());
412 return ois.readObject();
/libcore/luni/src/test/java/libcore/java/text/
H A DOldNumberFormatFieldTest.java58 NumberFormat.Field nfield2 = (NumberFormat.Field) in.readObject();
62 in.readObject();
H A DDecimalFormatSymbolsTest.java51 DecimalFormatSymbols deserializedDfs = (DecimalFormatSymbols) in.readObject();
H A DOldMessageFormatFieldTest.java66 mfield2 = (MessageFormat.Field) in.readObject();
73 in.readObject();
/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLDSAPrivateKey.java205 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { method in class:OpenSSLDSAPrivateKey
208 final BigInteger g = (BigInteger) stream.readObject();
209 final BigInteger p = (BigInteger) stream.readObject();
210 final BigInteger q = (BigInteger) stream.readObject();
211 final BigInteger x = (BigInteger) stream.readObject();
H A DOpenSSLDSAPublicKey.java165 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { method in class:OpenSSLDSAPublicKey
168 final BigInteger g = (BigInteger) stream.readObject();
169 final BigInteger p = (BigInteger) stream.readObject();
170 final BigInteger q = (BigInteger) stream.readObject();
171 final BigInteger y = (BigInteger) stream.readObject();
H A DOpenSSLECPrivateKey.java169 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { method in class:OpenSSLECPrivateKey
172 byte[] encoded = (byte[]) stream.readObject();
H A DOpenSSLECPublicKey.java154 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { method in class:OpenSSLECPublicKey
157 byte[] encoded = (byte[]) stream.readObject();
H A DOpenSSLSecretKey.java124 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { method in class:OpenSSLSecretKey
/libcore/luni/src/main/java/java/util/prefs/
H A DNodeChangeEvent.java91 private void readObject (ObjectInputStream in) throws IOException, ClassNotFoundException { method in class:NodeChangeEvent
H A DPreferenceChangeEvent.java109 private void readObject(ObjectInputStream in) throws IOException{ method in class:PreferenceChangeEvent
/libcore/luni/src/main/java/java/security/
H A DSignedObject.java42 private void readObject(ObjectInputStream s) throws IOException, method in class:SignedObject
107 return ois.readObject();
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java82 private void readObject(ObjectInputStream ois) throws Exception { method in class:ObjectInputStreamTest.SerializableTestHelper
131 * java.io.ObjectInputStream#readObject()
330 * two fields (Strings) and simple implementations of readObject and
338 sth = (SerializableTestHelper) (ois.readObject());
425 * java.io.ObjectInputStream#readObject()
432 assertEquals("Read incorrect Object value", s, ois.readObject());
505 Object o = ois.readObject();
509 assertNull(new ObjectInputStream() {}.readObject());
543 * java.io.ObjectInputStream#readObject()
551 in.readObject();
989 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { method in class:ObjectInputStreamTest.RegisterValidationClass
[all...]
/libcore/luni/src/main/java/java/sql/
H A DSQLInput.java243 public Object readObject() throws SQLException; method in interface:SQLInput
/libcore/luni/src/main/java/java/lang/
H A DStringBuilder.java677 private void readObject(ObjectInputStream in) throws IOException, method in class:StringBuilder
681 char[] value = (char[]) in.readObject();
/libcore/luni/src/main/java/java/util/logging/
H A DLogRecord.java479 private void readObject(ObjectInputStream in) throws IOException, method in class:LogRecord
493 parameters[i] = in.readObject();
/libcore/json/src/main/java/org/json/
H A DJSONTokener.java100 return readObject();
350 private JSONObject readObject() throws JSONException { method in class:JSONTokener
/libcore/luni/src/main/java/java/math/
H A DMathContext.java241 private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { method in class:MathContext

Completed in 292 milliseconds

12345