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

  /external/webkit/Source/WebKit2/Shared/
WebData.h 50 unsigned char *copiedBytes = 0;
53 copiedBytes = static_cast<unsigned char*>(fastMalloc(size));
54 memcpy(copiedBytes, bytes, size);
57 return createWithoutCopying(copiedBytes, size, fastFreeBytes, 0);
  /libcore/luni/src/main/java/java/io/
PushbackInputStream.java 181 int copiedBytes = 0, copyLength = 0, newOffset = offset;
188 copiedBytes += copyLength;
196 int inCopied = in.read(buffer, newOffset, length - copiedBytes);
198 return inCopied + copiedBytes;
200 if (copiedBytes == 0) {
203 return copiedBytes;

Completed in 565 milliseconds