HomeSort by relevance Sort by last modified time
    Searched defs:readCount (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /cts/tests/tests/content/src/android/content/res/cts/
RawResourceTest.java 46 int readCount;
48 while ((readCount = is.read(buffer, 0, buffer.length)) > 0) {
49 for (int i = 0; i < readCount; i++) {
58 readCount = is.read(buffer, 0, buffer.length);
59 assertEquals("Reading end of buffer: expected readCount=-1 but got " + readCount,
60 -1, readCount);
62 readCount = is.read(buffer, buffer.length, 0);
63 assertEquals("Reading end of buffer length 0: expected readCount=0 but got " + readCount,
    [all...]
ResourcesTest.java 672 int readCount;
674 while ((readCount = is.read(buffer, 0, buffer.length)) > 0) {
675 for (int i = 0; i < readCount; i++) {
684 readCount = is.read(buffer, 0, buffer.length);
685 assertEquals("Reading end of buffer: expected readCount=-1 but got " + readCount,
686 -1, readCount);
688 readCount = is.read(buffer, buffer.length, 0);
689 assertEquals("Reading end of buffer length 0: expected readCount=0 but got " + readCount,
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
AssetTest.java 39 int readCount;
41 while ((readCount = is.read(buffer, 0, buffer.length)) > 0) {
42 for (int i = 0; i < readCount; i++) {
51 readCount = is.read(buffer, 0, buffer.length);
52 assertEquals("Reading end of buffer: expected readCount=-1 but got " + readCount,
53 -1, readCount);
55 readCount = is.read(buffer, buffer.length, 0);
56 assertEquals("Reading end of buffer length 0: expected readCount=0 but got " + readCount,
    [all...]
  /art/runtime/jdwp/
jdwp_socket.cc 376 int readCount;
466 readCount =
468 if (readCount < 0) {
475 } else if (readCount == 0) {
485 input_count_ += readCount;
jdwp_adb.cc 298 int readCount;
382 readCount = read(clientSock, input_buffer_ + input_count_, sizeof(input_buffer_) - input_count_);
383 if (readCount < 0) {
390 } else if (readCount == 0) {
400 input_count_ += readCount;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ByteArrayOutputStream.java 194 int readCount = 0;
198 readCount += n;
207 return readCount;
  /build/libs/host/
CopyFile.c 119 ssize_t readCount, writeCount;
125 readCount = read(srcFd, buf, sizeof(buf));
126 if (readCount < 0) {
132 if (readCount > 0) {
133 writeCount = write(dstFd, buf, readCount);
139 if (writeCount != readCount) {
141 dst, writeCount, readCount);
146 if (readCount < (ssize_t) sizeof(buf))
  /external/guava/guava/src/com/google/common/collect/
Serialization.java 49 static int readCount(ObjectInputStream stream) throws IOException {
83 * prior call to {@link #readCount}.
128 * of distinct elements is determined by a prior call to {@link #readCount}.
177 * of distinct keys is determined by a prior call to {@link #readCount}.
MapMakerInternalMap.java     [all...]
  /frameworks/base/core/jni/android/graphics/pdf/
PdfEditor.cpp 77 const int readCount = pread(fd, outBuffer, size, position);
78 if (readCount < 0) {
PdfRenderer.cpp 69 const int readCount = pread(fd, outBuffer, size, position);
70 if (readCount < 0) {
  /cts/tests/tests/net/src/android/net/cts/
LocalSocketTest.java 272 int readCount;
273 while ((readCount = is.read(buffer)) >= 0) {
274 bytesRead += readCount;
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 471 int readCount = Libcore.os.read(fd, bytes, byteOffset, byteCount);
472 if (readCount == 0) {
475 return readCount;
  /external/mdnsresponder/mDNSPosix/
mDNSPosix.c     [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java     [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java     [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
FileChannelTest.java     [all...]
DatagramChannelTest.java     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.6.0/
okio-1.6.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.contenttype_3.5.0.v20150421-2214.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /external/libphonenumber/demo/war/WEB-INF/lib/
commons-io-1.4.jar 

Completed in 2826 milliseconds

1 2 3 4 5 6 7 8