Searched refs:readObject (Results 76 - 100 of 186) sorted by relevance

12345678

/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DSealedObjectTest.java65 * readObject(ObjectInputStream s) method testing. Tests if the
80 SealedObject so_des = (SealedObject) ois.readObject();
188 SealedObject readSo = (SealedObject) ois.readObject();
/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodType.java1093 private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, ClassNotFoundException { method in class:MethodType
1096 Class<?> returnType = (Class<?>) s.readObject();
1097 Class<?>[] parameterArray = (Class<?>[]) s.readObject();
/libcore/ojluni/src/main/java/java/util/
H A DEnumMap.java794 private void readObject(java.io.ObjectInputStream s) method in class:EnumMap
808 K key = (K) s.readObject();
809 V value = (V) s.readObject();
H A DPriorityQueue.java783 private void readObject(java.io.ObjectInputStream s) method in class:PriorityQueue
795 queue[i] = s.readObject();
H A DEnumSet.java458 // readObject method for the serialization proxy pattern
460 private void readObject(java.io.ObjectInputStream stream) method in class:EnumSet
H A DArrayDeque.java882 private void readObject(java.io.ObjectInputStream s) method in class:ArrayDeque
894 elements[i] = s.readObject();
H A DLinkedList.java1139 private void readObject(java.io.ObjectInputStream s) method in class:LinkedList
1149 linkLast((E)s.readObject());
H A DSimpleTimeZone.java1669 private void readObject(ObjectInputStream stream) method in class:SimpleTimeZone
1700 int[] times = (int[]) stream.readObject();
/libcore/ojluni/src/main/java/java/time/chrono/
H A DHijrahDate.java654 private void readObject(ObjectInputStream s) throws InvalidObjectException { method in class:HijrahDate
685 HijrahChronology chrono = (HijrahChronology) in.readObject();
H A DIsoChronology.java610 private void readObject(ObjectInputStream s) throws InvalidObjectException { method in class:IsoChronology
H A DJapaneseEra.java363 private void readObject(ObjectInputStream s) throws InvalidObjectException { method in class:JapaneseEra
H A DThaiBuddhistChronology.java397 private void readObject(ObjectInputStream s) throws InvalidObjectException { method in class:ThaiBuddhistChronology
/libcore/benchmarks/src/benchmarks/regression/
H A DSerializationBenchmark.java100 in.readObject();
/libcore/luni/src/main/java/libcore/reflect/
H A DAnnotationFactory.java134 private void readObject(ObjectInputStream os) throws IOException, ClassNotFoundException { method in class:AnnotationFactory
H A DAnnotationMember.java319 error = (Throwable)ois.readObject();
/libcore/luni/src/test/java/libcore/java/text/
H A DDateFormatSymbolsTest.java65 DateFormatSymbols deserializedDfs = (DateFormatSymbols) in.readObject();
/libcore/ojluni/src/main/java/java/lang/
H A DThrowable.java905 private void readObject(ObjectInputStream s) method in class:Throwable
/libcore/ojluni/src/main/java/java/net/
H A DInetSocketAddress.java289 private void readObject(ObjectInputStream in) method in class:InetSocketAddress
/libcore/ojluni/src/main/java/java/text/
H A DChoiceFormat.java511 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { method in class:ChoiceFormat
/libcore/ojluni/src/main/java/java/time/
H A DMonthDay.java771 private void readObject(ObjectInputStream s) throws InvalidObjectException { method in class:MonthDay
H A DZoneId.java621 private void readObject(ObjectInputStream s) throws InvalidObjectException { method in class:ZoneId
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DAtomicReferenceArray.java321 private void readObject(java.io.ObjectInputStream s) method in class:AtomicReferenceArray
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DPKCS8Key.java370 private void readObject (ObjectInputStream stream) method in class:PKCS8Key
/libcore/ojluni/src/main/java/sun/security/x509/
H A DX509Key.java418 private void readObject(ObjectInputStream stream) throws IOException { method in class:X509Key
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentLinkedQueue.java792 private void readObject(java.io.ObjectInputStream s) method in class:ConcurrentLinkedQueue
798 for (Object item; (item = s.readObject()) != null; ) {

Completed in 447 milliseconds

12345678