HomeSort by relevance Sort by last modified time
    Searched refs:writeObject (Results 151 - 175 of 279) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 236 private void writeObject(ObjectOutputStream out) throws IOException {
243 out.writeObject(certs[i]);
393 private void writeObject(ObjectOutputStream out) throws IOException {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEECPublicKey.java 524 private void writeObject(
528 out.writeObject(this.getEncoded());
529 out.writeObject(algorithm);
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 710 private void writeObject(java.io.ObjectOutputStream s)
720 s.writeObject(item);
724 s.writeObject(null);
LinkedBlockingQueue.java 839 private void writeObject(java.io.ObjectOutputStream s)
849 s.writeObject(p.item);
852 s.writeObject(null);
ConcurrentHashMap.java     [all...]
LinkedBlockingDeque.java     [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 237 private void writeObject(ObjectOutputStream out) throws IOException {
244 out.writeObject(certs[i]);
394 private void writeObject(ObjectOutputStream out) throws IOException {
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/kerberos/
KerberosKeyTest.java 218 out.writeObject(key);
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
SealedObjectTest.java 55 oos.writeObject(so);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERBitString.java 237 aOut.writeObject(this);
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDoubleArray.java 240 private void writeObject(java.io.ObjectOutputStream s)
  /external/junit/src/org/junit/experimental/max/
MaxHistory.java 76 stream.writeObject(this);
  /frameworks/base/keystore/java/android/security/
Credentials.java 117 pw.writeObject(o);
  /frameworks/base/tools/preload/
Root.java 141 oout.writeObject(this);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
Learning_StochasticLinearRanker.java 112 objStream.writeObject(model);
  /libcore/luni/src/main/java/java/net/
Inet6Address.java 253 private void writeObject(ObjectOutputStream stream) throws IOException {
  /libcore/luni/src/main/java/javax/crypto/
SealedObject.java 91 oos.writeObject(object);
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 55 new ObjectOutputStream(out).writeObject(originalDfs);
  /packages/apps/Phone/src/com/android/phone/sip/
SipProfileDb.java 81 oos.writeObject(p);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest1.java 102 // This one tests what happens if the read/writeObject methods are defined
119 private void writeObject(java.io.ObjectOutputStream out)
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)
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)
290 private void writeObject(java.io.ObjectOutputStream out
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Multimaps.java 130 private void writeObject(ObjectOutputStream stream) throws IOException {
132 stream.writeObject(factory);
133 stream.writeObject(backingMap());
137 @SuppressWarnings("unchecked") // reading data stored by writeObject
209 private void writeObject(ObjectOutputStream stream) throws IOException {
211 stream.writeObject(factory);
212 stream.writeObject(backingMap());
216 @SuppressWarnings("unchecked") // reading data stored by writeObject
287 private void writeObject(ObjectOutputStream stream) throws IOException {
289 stream.writeObject(factory)
    [all...]
AbstractBiMap.java 390 private void writeObject(ObjectOutputStream stream) throws IOException {
392 stream.writeObject(inverse());
396 @SuppressWarnings("unchecked") // reading data stored by writeObject
ConcurrentHashMultiset.java 570 private void writeObject(ObjectOutputStream stream) throws IOException {
572 stream.writeObject(countMap);
577 @SuppressWarnings("unchecked") // reading data stored by writeObject
  /libcore/luni/src/main/java/java/util/
EnumMap.java 728 private void writeObject(ObjectOutputStream stream) throws IOException {
734 stream.writeObject(entry.getKey());
735 stream.writeObject(entry.getValue());
IdentityHashMap.java 795 private void writeObject(ObjectOutputStream stream) throws IOException {
801 stream.writeObject(entry.key);
802 stream.writeObject(entry.value);

Completed in 820 milliseconds

1 2 3 4 5 67 8 91011>>