Home | History | Annotate | Download | only in dec

Lines Matching defs:source

18   private final ReadableByteChannel source;
26 * @param source underlying source
29 public Decoder(ReadableByteChannel source, int inputBufferSize)
34 if (source == null) {
35 throw new NullPointerException("source can not be null");
37 this.source = source;
76 int bytesRead = source.read(inputBuffer);
115 source.close();