Searched refs:objBytes (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/rmi/
H A DMarshalledObject.java73 * @serial Bytes of serialized representation. If <code>objBytes</code> is
77 private byte[] objBytes = null; field in class:MarshalledObject
120 objBytes = bout.toByteArray();
129 for (int i = 0; i < objBytes.length; i++) {
130 h = 31 * h + objBytes[i];
150 if (objBytes == null) // must have been a null object
153 ByteArrayInputStream bin = new ByteArrayInputStream(objBytes);
196 if (objBytes == null || other.objBytes == null)
197 return objBytes
[all...]

Completed in 28 milliseconds