Lines Matching refs:upperBound
159 bool Parcel::IsReadObjectData(const size_t nextObj, const size_t upperBound)
167 UTILS_LOGE("Non-object Read object data, readPos = %{public}zu, upperBound = %{public}zu", readCursor_, upperBound);
173 bool Parcel::ValidateReadData([[maybe_unused]]size_t upperBound)
182 if (nextObjectIdx_ < objSize && upperBound > objects[nextObjectIdx_]) {
186 if (!IsReadObjectData(nextObj, upperBound)) {
191 } while (nextObj < objSize && upperBound > objects[nextObj]);
672 size_t upperBound = readCursor_ + length;
673 if (isValidate && !ValidateReadData(upperBound)) {
781 size_t upperBound = readCursor_ + desireCapacity;
782 if (!ValidateReadData(upperBound)) {
826 size_t upperBound = readCursor_ + length;
827 if (!ValidateReadData(upperBound)) {
843 size_t upperBound = readCursor_ + length;
844 if (!ValidateReadData(upperBound)) {
860 size_t upperBound = readCursor_ + length;
861 if (!ValidateReadData(upperBound)) {