Searched refs:BUFFER_SIZE (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/util/
H A DBase64InputStream.java32 private static final int BUFFER_SIZE = 2048; field in class:Base64InputStream
64 inputBuffer = new byte[BUFFER_SIZE];
70 coder.output = new byte[coder.maxOutputSize(BUFFER_SIZE)];
/frameworks/base/awt/org/apache/harmony/awt/gl/image/
H A DJpegDecoder.java51 private static final int BUFFER_SIZE = 1024; field in class:JpegDecoder
52 private byte buffer[] = new byte[BUFFER_SIZE];
128 needBytes = BUFFER_SIZE - bytesInBuffer;
H A DGifDecoder.java57 private static final int BUFFER_SIZE = 1024; field in class:GifDecoder
58 private byte buffer[] = new byte[BUFFER_SIZE];
171 needBytes = BUFFER_SIZE - bytesInBuffer;
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnector.java51 private final int BUFFER_SIZE = 4096; field in class:NativeDaemonConnector
105 byte[] buffer = new byte[BUFFER_SIZE];
109 int count = inputStream.read(buffer, start, BUFFER_SIZE - start);
144 final int remaining = BUFFER_SIZE - start;
/frameworks/base/awt/java/awt/geom/
H A DFlatteningPathIterator.java44 private static final int BUFFER_SIZE = 16; field in class:FlatteningPathIterator
180 this.bufSize = Math.min(bufLimit, BUFFER_SIZE);
H A DGeneralPath.java52 private static final int BUFFER_SIZE = 10; field in class:GeneralPath
200 this(WIND_NON_ZERO, BUFFER_SIZE);
212 this(rule, BUFFER_SIZE);
238 this(WIND_NON_ZERO, BUFFER_SIZE);
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DModelInterpreter.java45 static final int BUFFER_SIZE = 0x1000; field in class:LineReader
48 byte buffer[] = new byte[BUFFER_SIZE];
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp476 const size_t BUFFER_SIZE = 2048; local
477 char* buffer = (char*)malloc(BUFFER_SIZE);
478 int len = read(fd, buffer, BUFFER_SIZE-1);

Completed in 567 milliseconds