Searched defs:oos (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DGuardedObject.java94 private void writeObject(java.io.ObjectOutputStream oos) argument
100 oos.defaultWriteObject();
H A DCodeSource.java493 private void writeObject(java.io.ObjectOutputStream oos) argument
496 oos.defaultWriteObject(); // location
500 oos.writeInt(0);
503 oos.writeInt(certs.length);
508 oos.writeUTF(cert.getType());
510 oos.writeInt(encoded.length);
511 oos.write(encoded);
520 oos.writeObject(signers);
H A DUnresolvedPermission.java521 private void writeObject(java.io.ObjectOutputStream oos) argument
524 oos.defaultWriteObject();
527 oos.writeInt(0);
530 oos.writeInt(certs.length);
535 oos.writeUTF(cert.getType());
537 oos.writeInt(encoded.length);
538 oos.write(encoded);
/openjdk7/jdk/test/java/util/Vector/
H A DSerializationDeadlock.java86 private void writeObject(final ObjectOutputStream oos) argument
88 oos.defaultWriteObject();
113 final ObjectOutputStream oos = new ObjectOutputStream(baos);
115 oos.writeObject(vector);
116 oos.close();
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificateRevokedException.java189 private void writeObject(ObjectOutputStream oos) throws IOException { argument
192 oos.defaultWriteObject();
195 oos.writeInt(extensions.size());
204 oos.writeObject(ext.getId());
205 oos.writeBoolean(ext.isCritical());
207 oos.writeInt(extVal.length);
208 oos.write(extVal);
/openjdk7/jdk/test/java/util/Hashtable/
H A DSerializationDeadlock.java84 private void writeObject(final ObjectOutputStream oos) argument
86 oos.defaultWriteObject();
112 final ObjectOutputStream oos = new ObjectOutputStream(baos);
114 oos.writeObject(hashtable);
115 oos.close();
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKerberosPrincipal.java237 private void writeObject(ObjectOutputStream oos) argument
243 oos.writeObject(krb5Principal.asn1Encode());
244 oos.writeObject(krb5Principal.getRealm().asn1Encode());
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextChildSupport.java316 private void writeObject(ObjectOutputStream oos) throws IOException { argument
327 oos.defaultWriteObject();
H A DBeanContextServicesSupport.java1135 protected synchronized void bcsPreSerializationHook(ObjectOutputStream oos) throws IOException { argument
1137 oos.writeInt(serializable);
1156 oos.writeObject(entry.getKey());
1157 oos.writeObject(bcsp);
1194 private synchronized void writeObject(ObjectOutputStream oos) throws IOException { argument
1195 oos.defaultWriteObject();
1197 serialize(oos, (Collection)bcsListeners);
H A DBeanContextSupport.java854 protected void bcsPreSerializationHook(ObjectOutputStream oos) throws IOException { argument
885 * @param oos the <tt>ObjectOutputStream</tt>
890 protected final void serialize(ObjectOutputStream oos, Collection coll) throws IOException { argument
901 oos.writeInt(count); // number of subsequent objects
907 oos.writeObject(o);
931 * @param oos the <tt>ObjectOutputStream</tt>
935 public final void writeChildren(ObjectOutputStream oos) throws IOException { argument
952 oos.writeObject(entry.getKey()); // child
953 oos.writeObject(entry.getValue()); // BCSChild
982 * @param oos th
985 writeObject(ObjectOutputStream oos) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubject.java934 private void writeObject(java.io.ObjectOutputStream oos) argument
937 oos.defaultWriteObject();
1277 private void writeObject(java.io.ObjectOutputStream oos) argument
1287 ObjectOutputStream.PutField fields = oos.putFields();
1291 oos.writeFields();

Completed in 519 milliseconds