Searched defs:ois (Results 1 - 3 of 3) sorted by relevance

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest.java88 protected transient ObjectInputStream ois; field in class:SerializationStressTest
234 ois = new ObjectInputStream(loadStream());
237 return ois.readObject();
239 ois.close();
337 ois = new ObjectInputStream(loadStream());
338 ois.close();
354 ois = new ObjectInputStream(loadStream());
355 ois.readFully(buf);
356 ois.close();
375 ois
[all...]
H A DObjectInputStreamTest.java61 ObjectInputStream ois; field in class:ObjectInputStreamTest
83 private void readObject(ObjectInputStream ois) throws Exception { argument
85 ObjectInputStream.GetField fields = ois.readFields();
149 ois = new ObjectInputStream(new ByteArrayInputStream(bao.toByteArray()));
150 ois.close();
154 ois = new ObjectInputStream(new ByteArrayInputStream(new byte[90]));
168 ois = new ObjectInputStream(new ByteArrayInputStream(bao.toByteArray()));
217 ois = new ObjectInputStream(new ByteArrayInputStream(bao.toByteArray()));
218 assertEquals("Read incorrect bytes", 10, ois.available());
219 ois
[all...]
H A DObjectOutputStreamTest.java66 private void readObject(ObjectInputStream ois) throws IOException { argument
69 ObjectInputStream.GetField fields = ois.readFields();
560 protected ObjectInputStream ois; field in class:ObjectOutputStreamTest
634 ois = new ObjectInputStream(new ByteArrayInputStream(bao.toByteArray()));
635 sth = (SerializableTestHelper) (ois.readObject());
653 ois = new ObjectInputStream(new ByteArrayInputStream(bao.toByteArray()));
654 ois.close();
699 ois = new ObjectInputStream(new ByteArrayInputStream(bao.toByteArray()));
700 ExternalTest t2 = (ExternalTest) ois.readObject();
701 ois
[all...]

Completed in 725 milliseconds