Searched refs:appendLocked (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/com/android/internal/util/ |
D | FastPrintWriter.java | 297 private void appendLocked(char c) throws IOException { in appendLocked() method in FastPrintWriter 307 private void appendLocked(String str, int i, final int length) throws IOException { in appendLocked() method in FastPrintWriter 313 appendLocked(str, i, next < end ? BUFFER_LEN : (end - i)); in appendLocked() 327 private void appendLocked(char[] buf, int i, final int length) throws IOException { in appendLocked() method in FastPrintWriter 333 appendLocked(buf, i, next < end ? BUFFER_LEN : (end - i)); in appendLocked() 453 appendLocked(charArray, 0, charArray.length); 472 appendLocked(ch); 497 appendLocked(str, 0, str.length()); 530 appendLocked(mSeparator, 0, mSeparator.length()); 598 appendLocked(buf, offset, count); [all …]
|