Searched refs:bytesCopied (Results 1 – 7 of 7) sorted by relevance
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Base64.java | 448 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/ |
D | UrlDownloaderTask.java | 168 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/ |
D | SkFrontBufferedStream.cpp | 182 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/ |
D | FrontBufferedStream.cpp | 210 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/ |
D | SpanId.java | 75 byte[] bytesCopied = Arrays.copyOf(buffer, SIZE); in fromBytes() 76 return new SpanId(bytesCopied); in fromBytes()
|
D | TraceId.java | 76 byte[] bytesCopied = Arrays.copyOf(buffer, SIZE); in fromBytes() 77 return new TraceId(bytesCopied); in fromBytes()
|
/external/sl4a/Common/src/org/apache/commons/codec/binary/ |
D | Base64Codec.java | 853 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()
|