Home | History | Annotate | Download | only in util

Lines Matching defs:coder

28     private final Base64.Coder coder;
66 coder = new Base64.Encoder(flags, null);
68 coder = new Base64.Decoder(flags, null);
70 coder.output = new byte[coder.maxOutputSize(BUFFER_SIZE)];
115 return coder.output[outputStart++] & 0xff;
127 System.arraycopy(coder.output, outputStart, b, off, bytes);
134 * decode/encode it into the empty coder.output, and reset the
143 success = coder.process(EMPTY, 0, 0, true);
145 success = coder.process(inputBuffer, 0, bytesRead, false);
150 outputEnd = coder.op;