Lines Matching refs:length
566 int32_t dataLength = value.length();
586 int32_t dataLength = value.length();
667 const uint8_t *Parcel::ReadBuffer(size_t length, bool isValidate)
669 if (GetReadableBytes() >= length) {
672 size_t upperBound = readCursor_ + length;
677 readCursor_ += length;
821 const uint8_t *Parcel::ReadBuffer(size_t length)
823 if (GetReadableBytes() >= length) {
826 size_t upperBound = readCursor_ + length;
831 readCursor_ += length;
838 const uint8_t *Parcel::BasicReadBuffer([[maybe_unused]]size_t length)
841 if (GetReadableBytes() >= length) {
843 size_t upperBound = readCursor_ + length;
845 readCursor_ += length;
848 readCursor_ += length;
855 const uint8_t *Parcel::ReadUnpadBuffer(size_t length)
857 if (GetReadableBytes() >= length) {
860 size_t upperBound = readCursor_ + length;
865 readCursor_ += length;
866 SkipBytes(GetPadSize(length));
1365 // The write length of these interfaces is different from the original type.
1366 // They need to use the specified write length and calculate the padSize based on this.