Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/util/
DFastPrintWriter.java310 final int BUFFER_LEN = mBufferLen; in appendLocked() local
311 if (length > BUFFER_LEN) { in appendLocked()
314 int next = i + BUFFER_LEN; in appendLocked()
315 appendLocked(str, i, next < end ? BUFFER_LEN : (end - i)); in appendLocked()
321 if ((pos+length) > BUFFER_LEN) { in appendLocked()
330 final int BUFFER_LEN = mBufferLen; in appendLocked() local
331 if (length > BUFFER_LEN) { in appendLocked()
334 int next = i + BUFFER_LEN; in appendLocked()
335 appendLocked(buf, i, next < end ? BUFFER_LEN : (end - i)); in appendLocked()
341 if ((pos+length) > BUFFER_LEN) { in appendLocked()