Home
last modified time | relevance | path

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

/system/core/adb/fastdeploy/deploylib/src/com/android/fastdeploy/
DPatchUtils.java177 static void fill(byte value, final OutputStream out, final byte[] buffer, long fillLength) in fill() argument
179 while (fillLength > 0) { in fill()
180 int maxCopy = Math.min(buffer.length, (int) fillLength); in fill()
183 fillLength -= maxCopy; in fill()