Lines Matching refs:reserveInts
285 uint32_t reserveInts = parcel.ReadUint32();
286 if (reserveInts > SURFACE_PARCEL_SIZE_LIMIT) {
287 BLOGE("ReadExtDataHandle size more than limit, size: %{public}u", reserveInts);
290 GraphicExtDataHandle *tunnelHandle = AllocExtDataHandle(reserveInts);
296 for (uint32_t index = 0; index < reserveInts; index++) {
314 uint32_t reserveInts = handle->reserveInts;
315 if (reserveInts > SURFACE_PARCEL_SIZE_LIMIT) {
316 BLOGE("WriteExtDataHandle size more than limit, size: %{public}u", reserveInts);
319 if (!parcel.WriteUint32(reserveInts)) {
326 for (uint32_t index = 0; index < handle->reserveInts; index++) {