Lines Matching defs:in
6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
109 AudioStreamIn* in;
111 in = new AudioStreamIn(*this);
112 if (in == NULL) {
117 *status = in->set(format, channelMask, sampleRate);
120 delete in;
124 mInputStreams.add(in);
126 return in;
129 void AudioHardwareInput::closeInputStream(AudioStreamIn* in)
134 if (in == mInputStreams[i]) {
136 in->standby();
137 delete in;
146 AudioStreamIn* in = mInputStreams[0];
148 in->standby();
149 delete in;