Lines Matching refs:from

106 InputWindowInfo InputWindowInfo::read(const Parcel& from) {  in read()  argument
109 if (from.readInt32() == 0) { in read()
113 sp<IBinder> token = from.readStrongBinder(); in read()
119 ret.name = from.readString8().c_str(); in read()
120 ret.layoutParamsFlags = from.readInt32(); in read()
121 ret.layoutParamsType = from.readInt32(); in read()
122 ret.dispatchingTimeout = from.readInt64(); in read()
123 ret.frameLeft = from.readInt32(); in read()
124 ret.frameTop = from.readInt32(); in read()
125 ret.frameRight = from.readInt32(); in read()
126 ret.frameBottom = from.readInt32(); in read()
127 ret.surfaceInset = from.readInt32(); in read()
128 ret.globalScaleFactor = from.readFloat(); in read()
129 ret.windowXScale = from.readFloat(); in read()
130 ret.windowYScale = from.readFloat(); in read()
131 ret.visible = from.readBool(); in read()
132 ret.canReceiveKeys = from.readBool(); in read()
133 ret.hasFocus = from.readBool(); in read()
134 ret.hasWallpaper = from.readBool(); in read()
135 ret.paused = from.readBool(); in read()
136 ret.layer = from.readInt32(); in read()
137 ret.ownerPid = from.readInt32(); in read()
138 ret.ownerUid = from.readInt32(); in read()
139 ret.inputFeatures = from.readInt32(); in read()
140 ret.displayId = from.readInt32(); in read()
141 ret.portalToDisplayId = from.readInt32(); in read()
142 ret.applicationInfo = InputApplicationInfo::read(from); in read()
143 from.read(ret.touchableRegion); in read()
144 ret.replaceTouchableRegionWithCrop = from.readBool(); in read()
145 ret.touchableRegionCropHandle = from.readStrongBinder(); in read()
150 InputWindowInfo::InputWindowInfo(const Parcel& from) { in InputWindowInfo() argument
151 *this = read(from); in InputWindowInfo()