Home | History | Annotate | Download | only in cts

Lines Matching defs:parcel

4 import android.os.Parcel;
38 Parcel parcel = Parcel.obtain();
39 parcel.setDataPosition(0);
40 account.writeToParcel(parcel, 0);
42 parcel.setDataPosition(0);
43 // Create a new account object from just populated parcel,
45 Account newAccount = new Account(parcel);
48 parcel.recycle();