MCPcopy Create free account
hub / github.com/Snapchat/djinni / Parcel

Method Parcel

test-suite/handwritten-src/java/android/os/Parcel.java:18–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

16 private ObjectInputStream mIn;
17
18 public Parcel() {
19 try {
20 mOutStream = new ByteArrayOutputStream();
21 mOut = new ObjectOutputStream(mOutStream);
22 } catch (Exception ex) {
23 ex.printStackTrace();
24 }
25 }
26
27 public final void flush() {
28 try {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected