Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DFileUtils.java95 private static final long COPY_CHECKPOINT_BYTES = 524288; field in FileUtils
398 while ((t = Os.splice(in, null, out, null, Math.min(count, COPY_CHECKPOINT_BYTES), in copyInternalSplice()
404 if (checkpoint >= COPY_CHECKPOINT_BYTES) { in copyInternalSplice()
431 while ((t = Os.sendfile(out, in, null, Math.min(count, COPY_CHECKPOINT_BYTES))) != 0) { in copyInternalSendfile()
436 if (checkpoint >= COPY_CHECKPOINT_BYTES) { in copyInternalSendfile()
478 if (checkpoint >= COPY_CHECKPOINT_BYTES) { in copyInternalUserspace()