Home | History | Annotate | Download | only in camera2

Lines Matching refs:parcel

25 status_t SubmitInfo::writeToParcel(android::Parcel *parcel) const {
27 if (parcel == nullptr) return BAD_VALUE;
29 res = parcel->writeInt32(mRequestId);
32 res = parcel->writeInt64(mLastFrameNumber);
36 status_t SubmitInfo::readFromParcel(const android::Parcel *parcel) {
38 if (parcel == nullptr) return BAD_VALUE;
40 res = parcel->readInt32(&mRequestId);
43 res = parcel->readInt64(&mLastFrameNumber);