Lines Matching refs:parcel

32 status_t LayerDebugInfo::writeToParcel(Parcel* parcel) const {  in writeToParcel()
33 RETURN_ON_ERROR(parcel->writeCString(mName.c_str())); in writeToParcel()
34 RETURN_ON_ERROR(parcel->writeCString(mParentName.c_str())); in writeToParcel()
35 RETURN_ON_ERROR(parcel->writeCString(mType.c_str())); in writeToParcel()
36 RETURN_ON_ERROR(parcel->write(mTransparentRegion)); in writeToParcel()
37 RETURN_ON_ERROR(parcel->write(mVisibleRegion)); in writeToParcel()
38 RETURN_ON_ERROR(parcel->write(mSurfaceDamageRegion)); in writeToParcel()
39 RETURN_ON_ERROR(parcel->writeUint32(mLayerStack)); in writeToParcel()
40 RETURN_ON_ERROR(parcel->writeFloat(mX)); in writeToParcel()
41 RETURN_ON_ERROR(parcel->writeFloat(mY)); in writeToParcel()
42 RETURN_ON_ERROR(parcel->writeUint32(mZ)); in writeToParcel()
43 RETURN_ON_ERROR(parcel->writeInt32(mWidth)); in writeToParcel()
44 RETURN_ON_ERROR(parcel->writeInt32(mHeight)); in writeToParcel()
45 RETURN_ON_ERROR(parcel->write(mCrop)); in writeToParcel()
46 RETURN_ON_ERROR(parcel->writeFloat(mColor.r)); in writeToParcel()
47 RETURN_ON_ERROR(parcel->writeFloat(mColor.g)); in writeToParcel()
48 RETURN_ON_ERROR(parcel->writeFloat(mColor.b)); in writeToParcel()
49 RETURN_ON_ERROR(parcel->writeFloat(mColor.a)); in writeToParcel()
50 RETURN_ON_ERROR(parcel->writeUint32(mFlags)); in writeToParcel()
51 RETURN_ON_ERROR(parcel->writeInt32(mPixelFormat)); in writeToParcel()
52 RETURN_ON_ERROR(parcel->writeUint32(static_cast<uint32_t>(mDataSpace))); in writeToParcel()
54 RETURN_ON_ERROR(parcel->writeFloat(mMatrix[index / 2][index % 2])); in writeToParcel()
56 RETURN_ON_ERROR(parcel->writeInt32(mActiveBufferWidth)); in writeToParcel()
57 RETURN_ON_ERROR(parcel->writeInt32(mActiveBufferHeight)); in writeToParcel()
58 RETURN_ON_ERROR(parcel->writeInt32(mActiveBufferStride)); in writeToParcel()
59 RETURN_ON_ERROR(parcel->writeInt32(mActiveBufferFormat)); in writeToParcel()
60 RETURN_ON_ERROR(parcel->writeInt32(mNumQueuedFrames)); in writeToParcel()
61 RETURN_ON_ERROR(parcel->writeBool(mRefreshPending)); in writeToParcel()
62 RETURN_ON_ERROR(parcel->writeBool(mIsOpaque)); in writeToParcel()
63 RETURN_ON_ERROR(parcel->writeBool(mContentDirty)); in writeToParcel()
67 status_t LayerDebugInfo::readFromParcel(const Parcel* parcel) { in readFromParcel() argument
68 mName = parcel->readCString(); in readFromParcel()
69 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
70 mParentName = parcel->readCString(); in readFromParcel()
71 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
72 mType = parcel->readCString(); in readFromParcel()
73 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
74 RETURN_ON_ERROR(parcel->read(mTransparentRegion)); in readFromParcel()
75 RETURN_ON_ERROR(parcel->read(mVisibleRegion)); in readFromParcel()
76 RETURN_ON_ERROR(parcel->read(mSurfaceDamageRegion)); in readFromParcel()
77 RETURN_ON_ERROR(parcel->readUint32(&mLayerStack)); in readFromParcel()
78 RETURN_ON_ERROR(parcel->readFloat(&mX)); in readFromParcel()
79 RETURN_ON_ERROR(parcel->readFloat(&mY)); in readFromParcel()
80 RETURN_ON_ERROR(parcel->readUint32(&mZ)); in readFromParcel()
81 RETURN_ON_ERROR(parcel->readInt32(&mWidth)); in readFromParcel()
82 RETURN_ON_ERROR(parcel->readInt32(&mHeight)); in readFromParcel()
83 RETURN_ON_ERROR(parcel->read(mCrop)); in readFromParcel()
84 mColor.r = parcel->readFloat(); in readFromParcel()
85 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
86 mColor.g = parcel->readFloat(); in readFromParcel()
87 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
88 mColor.b = parcel->readFloat(); in readFromParcel()
89 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
90 mColor.a = parcel->readFloat(); in readFromParcel()
91 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
92 RETURN_ON_ERROR(parcel->readUint32(&mFlags)); in readFromParcel()
93 RETURN_ON_ERROR(parcel->readInt32(&mPixelFormat)); in readFromParcel()
95 mDataSpace = static_cast<android_dataspace>(parcel->readUint32()); in readFromParcel()
96 RETURN_ON_ERROR(parcel->errorCheck()); in readFromParcel()
98 RETURN_ON_ERROR(parcel->readFloat(&mMatrix[index / 2][index % 2])); in readFromParcel()
100 RETURN_ON_ERROR(parcel->readInt32(&mActiveBufferWidth)); in readFromParcel()
101 RETURN_ON_ERROR(parcel->readInt32(&mActiveBufferHeight)); in readFromParcel()
102 RETURN_ON_ERROR(parcel->readInt32(&mActiveBufferStride)); in readFromParcel()
103 RETURN_ON_ERROR(parcel->readInt32(&mActiveBufferFormat)); in readFromParcel()
104 RETURN_ON_ERROR(parcel->readInt32(&mNumQueuedFrames)); in readFromParcel()
105 RETURN_ON_ERROR(parcel->readBool(&mRefreshPending)); in readFromParcel()
106 RETURN_ON_ERROR(parcel->readBool(&mIsOpaque)); in readFromParcel()
107 RETURN_ON_ERROR(parcel->readBool(&mContentDirty)); in readFromParcel()