Home | History | Annotate | Download | only in internal

Lines Matching refs:readCount

379         int readCount = 0;
381 readCount = readImpl(target);
382 if (readCount > 0) {
383 target.position(target.position() + readCount);
389 readCount = readImpl(readBuffer);
390 if (readCount > 0) {
391 target.put(readArray, 0, readCount);
394 return readCount;
413 int readCount;
414 readCount = readImpl(readBuffer);
415 int left = readCount;
421 targets[index].put(readArray, readCount - left, putLength);
425 return readCount;
433 int readCount = 0;
440 readCount = networkSystem.recvDirect(fd, null, address, start, length,
446 readCount = networkSystem.recv(fd, null, target, start, length, false,
449 return readCount;
454 end(readCount > 0);