Searched refs:copyLength (Results 1 – 4 of 4) sorted by relevance
66 long copyLength) throws IOException { in pipe() argument67 while (copyLength > 0) { in pipe()68 int maxCopy = (int) Math.min(buffer.length, copyLength); in pipe()71 copyLength -= maxCopy; in pipe()
283 size_t copyLength = nextEscapePosition - escapedPosition; in unescapeStream() local284 memmove(data+unescapedPosition, data+escapedPosition, copyLength); in unescapeStream()285 unescapedPosition += copyLength; in unescapeStream()288 escapedPosition += copyLength + 3; in unescapeStream()
285 size_t copyLength = std::min(size_t(view.capacity()), buffer->capacity()); in attachBuffer() local289 memcpy(buffer->base(), view.data(), copyLength); in attachBuffer()290 buffer->setRange(0, copyLength); in attachBuffer()
3647 int copyLength = mExifOffset - PNG_SIGNATURE.length in savePngAttributes() local3650 copy(dataInputStream, dataOutputStream, copyLength); in savePngAttributes()