Home | History | Annotate | Download | only in voicedialer

Lines Matching refs:inputStream

33 import java.io.InputStream;
209 * InputStream wrapper which will log the contents to a WAV file.
210 * @param inputStream
214 public InputStream logInputStream(final InputStream inputStream, final int sampleRate) {
217 return new InputStream() {
220 return inputStream.available();
224 int rtn = inputStream.read(b, offset, length);
230 int rtn = inputStream.read(b);
236 int rtn = inputStream.read();
260 inputStream.close();