Searched refs:writeObject (Results 101 - 125 of 170) sorted by relevance

1234567

/external/guava/guava/src/com/google/common/collect/
H A DLinkedHashMultimap.java364 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:LinkedHashMultimap
369 stream.writeObject(entry.getKey());
370 stream.writeObject(entry.getValue());
386 @SuppressWarnings("unchecked") // reading data stored by writeObject
388 @SuppressWarnings("unchecked") // reading data stored by writeObject
H A DArrayListMultimap.java145 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:ArrayListMultimap
H A DHashMultimap.java123 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:HashMultimap
H A DMultimaps.java130 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomMultimap
132 stream.writeObject(factory);
133 stream.writeObject(backingMap());
137 @SuppressWarnings("unchecked") // reading data stored by writeObject
209 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomListMultimap
211 stream.writeObject(factory);
212 stream.writeObject(backingMap());
216 @SuppressWarnings("unchecked") // reading data stored by writeObject
287 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomSetMultimap
289 stream.writeObject(factor
371 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomSortedSetMultimap
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1OutputStream.java122 public void writeObject( method in class:ASN1OutputStream
H A DBEROctetString.java148 out.writeObject((ASN1Encodable)e.nextElement());
H A DDERBitString.java250 aOut.writeObject(this);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPrivateKey.java136 private void writeObject( method in class:BCRSAPrivateKey
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPrivateKey.java474 private void writeObject( method in class:JCEECPrivateKey
478 out.writeObject(this.getEncoded());
479 out.writeObject(algorithm);
482 attrCarrier.writeObject(out);
H A DJCEECPublicKey.java524 private void writeObject( method in class:JCEECPublicKey
528 out.writeObject(this.getEncoded());
529 out.writeObject(algorithm);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemWriter.java73 public void writeObject(PemObjectGenerator objGen) method in class:PemWriter
/external/emma/core/java12/com/vladium/util/exception/
H A DAbstractException.java315 private void writeObject (final ObjectOutputStream out) method in class:AbstractException
H A DAbstractRuntimeException.java315 private void writeObject (final ObjectOutputStream out) method in class:AbstractRuntimeException
/external/easymock/src/org/easymock/internal/
H A DInvocation.java214 private void writeObject(java.io.ObjectOutputStream stream) throws IOException { method in class:Invocation
216 stream.writeObject(new MethodSerializationWrapper(method));
/external/javassist/src/main/javassist/tools/rmi/
H A DObjectImporter.java293 dout.writeObject(new RemoteRef(p._getObjectId()));
296 dout.writeObject(params[i]);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DRefSortedMap.java380 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:RefSortedMap
384 stream.writeObject(e.getKey());
385 stream.writeObject(e.getValue());
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java236 private void writeObject(ObjectOutputStream out) throws IOException { method in class:TestCertUtils.TestCertPath
243 out.writeObject(certs[i]);
393 private void writeObject(ObjectOutputStream out) throws IOException { method in class:TestCertUtils.TestCertificate
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/kerberos/
H A DKerberosKeyTest.java218 out.writeObject(key);
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DSealedObjectTest.java55 oos.writeObject(so);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509CertificateHolder.java271 dOut.writeObject(tbsCert);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java240 private void writeObject(java.io.ObjectOutputStream s) method in class:AtomicDoubleArray
/external/junit/src/org/junit/experimental/max/
H A DMaxHistory.java76 stream.writeObject(this);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest1.java102 // This one tests what happens if the read/writeObject methods are defined
119 private void writeObject(java.io.ObjectOutputStream out) method in class:SerializationStressTest1.ReadWriteObject
122 out.writeObject(FOO);
126 // This one tests what happens if the read/writeObject methods are not
144 public void writeObject(java.io.ObjectOutputStream out) method in class:SerializationStressTest1.PublicReadWriteObject
147 out.writeObject(FOO);
164 // writeObject.
180 // This one tests what happens if you define just writeObject, but not
190 private void writeObject(java.io.ObjectOutputStream out) method in class:SerializationStressTest1.JustWriteObject
290 private void writeObject(jav method in class:SerializationStressTest1.MyExceptionWhenDumping1
314 private void writeObject(java.io.ObjectOutputStream out) method in class:SerializationStressTest1.MyExceptionWhenDumping2
352 private void writeObject(java.io.ObjectOutputStream out) method in class:SerializationStressTest1.MyUnserializableExceptionWhenDumping
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DBCECPrivateKey.java492 private void writeObject( method in class:BCECPrivateKey
498 out.writeObject(this.getEncoded());
H A DBCECPublicKey.java435 private void writeObject( method in class:BCECPublicKey
441 out.writeObject(this.getEncoded());

Completed in 499 milliseconds

1234567