Home
last modified time | relevance | path

Searched refs:countToRead (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/os/
DFileUtils.java543 long countToRead = count; in copyInternalSpliceSocket() local
549 while (countToRead > 0 || countInPipe > 0) { in copyInternalSpliceSocket()
550 if (countToRead > 0) { in copyInternalSpliceSocket()
551 … t = Os.splice(in, null, pipes[1], null, Math.min(countToRead, COPY_CHECKPOINT_BYTES), in copyInternalSpliceSocket()
557 ", read:" + (count - countToRead) + in copyInternalSpliceSocket()
564 ", read:" + (count - countToRead) + in copyInternalSpliceSocket()
566 countToRead = 0; in copyInternalSpliceSocket()
569 countToRead -= t; in copyInternalSpliceSocket()
581 ", read:" + (count - countToRead) + in copyInternalSpliceSocket()