HomeSort by relevance Sort by last modified time
    Searched refs:copylen (Results 1 - 14 of 14) sorted by null

  /libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 155 int copylen = this.count - pos < byteCount ? this.count - pos : byteCount;
156 System.arraycopy(this.buf, pos, buffer, byteOffset, copylen);
157 pos += copylen;
158 return copylen;
StringBufferInputStream.java 90 int copylen = count - pos < byteCount ? count - pos : byteCount;
91 for (int i = 0; i < copylen; ++i) {
94 pos += copylen;
95 return copylen;
  /external/dropbear/
random.c 183 unsigned int copylen; local
200 copylen = MIN(len, SHA1_HASH_SIZE);
201 memcpy(buf, hash, copylen);
202 len -= copylen;
203 buf += copylen;
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 165 size_t copylen; local
221 copylen = xzf->read_out_len;
222 if (copylen > len)
223 copylen = len;
224 memcpy(buf, xzf->read_out, copylen);
225 nread += copylen;
226 buf += copylen;
227 len -= copylen;
228 xzf->read_out += copylen;
229 xzf->read_out_len -= copylen;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
bio_asn1.c 101 int copylen; member in struct:BIO_ASN1_BUF_CTX_t
172 ctx->copylen = 0;
241 ctx->copylen = inl;
265 if (inl > ctx->copylen)
266 wrmax = ctx->copylen;
273 ctx->copylen -= ret;
277 if (ctx->copylen == 0)
  /external/openssl/crypto/asn1/
bio_asn1.c 101 int copylen; member in struct:BIO_ASN1_BUF_CTX_t
172 ctx->copylen = 0;
241 ctx->copylen = inl;
265 if (inl > ctx->copylen)
266 wrmax = ctx->copylen;
273 ctx->copylen -= ret;
277 if (ctx->copylen == 0)
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SuballocatedIntVector.java 287 int copylen=m_blocksize-offset-1; local
297 System.arraycopy(block, offset , block, offset+1, copylen);
356 int copylen=m_blocksize-offset-1; local
361 System.arraycopy(block, offset+1, block, offset, copylen);
  /external/elfutils/libebl/
eblgstrtab.c 353 size_t copylen; local
376 copylen = nulllen;
377 copystrings (st->root, &endp, &copylen);
378 assert (copylen == st->total * st->width + nulllen);
eblwstrtab.c 347 size_t copylen; local
370 copylen = sizeof (wchar_t) * nulllen;
371 copystrings (st->root, &endp, &copylen);
372 assert (copylen == (st->total + nulllen) * sizeof (wchar_t));
eblstrtab.c 354 size_t copylen = nulllen; local
355 copystrings (st->root, &endp, &copylen);
356 assert (copylen == st->total + nulllen);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java 933 int copylen = 0; local
978 copylen = (stdoutAvail > len) ? len : stdoutAvail;
979 System.arraycopy(c.stdoutBuffer, c.stdoutReadpos, target, off, copylen);
980 c.stdoutReadpos += copylen;
992 copylen = (stderrAvail > len) ? len : stderrAvail;
993 System.arraycopy(c.stderrBuffer, c.stderrReadpos, target, off, copylen);
994 c.stderrReadpos += copylen;
1006 return copylen;
1051 return copylen;
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
if.c 630 int seglen, copylen; local
659 *size = copylen = ((hdr.bh_caplen < sizeof(PPPoEPacket)) ?
661 memcpy(pkt, bpfBuffer + bpfOffset + hdr.bh_hdrlen, copylen);
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 893 int copylen = topFilters.length - pos - 1; local
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 

Completed in 748 milliseconds