Searched refs:currentBuffer (Results 1 – 2 of 2) sorted by relevance
63 private byte[] currentBuffer; field in ByteArrayOutputStream110 filledBufferSum += currentBuffer.length; in needNewBuffer()113 currentBuffer = getBuffer(currentBufferIndex); in needNewBuffer()117 if (currentBuffer == null) { in needNewBuffer()122 currentBuffer.length << 1, in needNewBuffer()124 filledBufferSum += currentBuffer.length; in needNewBuffer()128 currentBuffer = new byte[newBufferSize]; in needNewBuffer()129 buffers.add(currentBuffer); in needNewBuffer()155 int part = Math.min(remaining, currentBuffer.length - inBufferPos); in write()156 System.arraycopy(b, off + len - remaining, currentBuffer, inBufferPos, part); in write()[all …]
1691 String currentBuffer = SystemProperties.get(ACTUAL_LOGPERSIST_PROPERTY_BUFFER); in writeLogpersistOption() local1692 if ((currentBuffer != null) && !currentBuffer.equals(newValue.toString())) { in writeLogpersistOption()