Home
last modified time | relevance | path

Searched refs:bytesCopied (Results 1 – 7 of 7) sorted by relevance

/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java448 int bytesCopied = 0; in discardWhitespace() local
458 groomedData[bytesCopied++] = data[i]; in discardWhitespace()
462 byte packedData[] = new byte[bytesCopied]; in discardWhitespace()
464 System.arraycopy(groomedData, 0, packedData, 0, bytesCopied); in discardWhitespace()
480 int bytesCopied = 0; in discardNonBase64() local
484 groomedData[bytesCopied++] = data[i]; in discardNonBase64()
488 byte packedData[] = new byte[bytesCopied]; in discardNonBase64()
490 System.arraycopy(groomedData, 0, packedData, 0, bytesCopied); in discardNonBase64()
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
DUrlDownloaderTask.java168 int bytesCopied = IoUtils.copy(connection.getInputStream(), mProgressReportingOutputStream); in download() local
169 if (bytesCopied != contentLength && contentLength != -1) { in download()
170 throw new IOException("Download incomplete: " + bytesCopied + " != " + contentLength); in download()
174 return bytesCopied; in download()
/external/skqp/src/utils/
DSkFrontBufferedStream.cpp182 const size_t bytesCopied = this->readFromBuffer(dst, size); in read() local
186 size -= bytesCopied; in read()
189 dst += bytesCopied; in read()
/external/skia/client_utils/android/
DFrontBufferedStream.cpp210 const size_t bytesCopied = this->readFromBuffer(dst, size); in read() local
214 size -= bytesCopied; in read()
217 dst += bytesCopied; in read()
/external/opencensus-java/api/src/main/java/io/opencensus/trace/
DSpanId.java75 byte[] bytesCopied = Arrays.copyOf(buffer, SIZE); in fromBytes()
76 return new SpanId(bytesCopied); in fromBytes()
DTraceId.java76 byte[] bytesCopied = Arrays.copyOf(buffer, SIZE); in fromBytes()
77 return new TraceId(bytesCopied); in fromBytes()
/external/sl4a/Common/src/org/apache/commons/codec/binary/
DBase64Codec.java853 int bytesCopied = 0; in discardWhitespace() local
862 groomedData[bytesCopied++] = data[i]; in discardWhitespace()
865 byte packedData[] = new byte[bytesCopied]; in discardWhitespace()
866 System.arraycopy(groomedData, 0, packedData, 0, bytesCopied); in discardWhitespace()