/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 | 592 int readCount; 594 while ((readCount = is.read(buffer, 0, buffer.length)) > 0) { 595 for (int i = 0; i < readCount; i++) { 604 readCount = is.read(buffer, 0, buffer.length); 605 assertEquals("Reading end of buffer: expected readCount=-1 but got " + readCount, 606 -1, readCount); 608 readCount = is.read(buffer, buffer.length, 0); 609 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 | 349 int readCount; 439 readCount = read(clientSock, input_buffer_ + input_count_, sizeof(input_buffer_) - input_count_); 440 if (readCount < 0) { 447 } else if (readCount == 0) { 457 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...] |
/libcore/luni/src/main/java/java/nio/channels/ |
Channels.java | 303 int readCount = 0; 306 readCount = inputStream.read(bytes); 308 end(readCount >= 0); 310 if (readCount > 0) { 311 target.put(bytes, 0, readCount); 313 return readCount;
|
/dalvik/vm/jdwp/ |
JdwpAdb.cpp | 503 int readCount; 590 readCount = read(netState->clientSock, 593 if (readCount < 0) { 599 } else if (readCount == 0) { 608 netState->inputCount += readCount;
|
JdwpSocket.cpp | 661 int readCount; 750 readCount = read(netState->clientSock, 753 if (readCount < 0) { 759 } else if (readCount == 0) { 768 netState->inputCount += readCount;
|
/libcore/luni/src/main/java/java/net/ |
PlainSocketImpl.java | 488 int readCount = IoBridge.recvfrom(true, fd, buffer, offset, byteCount, 0, null, false); 490 if (readCount == 0) { 494 if (readCount == -1) { 497 return readCount;
|
/libcore/luni/src/main/java/java/nio/ |
DatagramChannelImpl.java | 279 int readCount = 0; 281 readCount = readImpl(target); 282 if (readCount > 0) { 283 target.position(target.position() + readCount); 289 readCount = readImpl(readBuffer); 290 if (readCount > 0) { 291 target.put(readArray, 0, readCount); 294 return readCount; 311 int readCount; 312 readCount = readImpl(readBuffer) [all...] |
SocketChannelImpl.java | 302 int readCount; 304 readCount = readImpl(readBuffer); 306 if (readCount > 0) { 307 int left = readCount; 312 targets[index].put(readArray, readCount - left, putLength); 317 return readCount; 322 int readCount = 0; 327 readCount = IoBridge.recvfrom(true, fd, dst, 0, null, false); 328 if (readCount > 0) { 329 dst.position(dst.position() + readCount); [all...] |
/libcore/luni/src/main/java/libcore/io/ |
IoBridge.java | 425 int readCount = Libcore.os.read(fd, bytes, byteOffset, byteCount); 426 if (readCount == 0) { 429 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/nio/tests/java/nio/channels/ |
DatagramChannelTest.java | [all...] |
FileChannelTest.java | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar | |
/prebuilts/devtools/tools/lib/ |
ddmlib.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/ |
ddmlib-22.2.0.jar | |