Lines Matching defs:in
5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
337 struct stub_stream_in *in;
340 in = (struct stub_stream_in *)calloc(1, sizeof(struct stub_stream_in));
341 if (!in)
344 in->stream.common.get_sample_rate = in_get_sample_rate;
345 in->stream.common.set_sample_rate = in_set_sample_rate;
346 in->stream.common.get_buffer_size = in_get_buffer_size;
347 in->stream.common.get_channels = in_get_channels;
348 in->stream.common.get_format = in_get_format;
349 in->stream.common.set_format = in_set_format;
350 in->stream.common.standby = in_standby;
351 in->stream.common.dump = in_dump;
352 in->stream.common.set_parameters = in_set_parameters;
353 in->stream.common.get_parameters = in_get_parameters;
354 in->stream.common.add_audio_effect = in_add_audio_effect;
355 in->stream.common.remove_audio_effect = in_remove_audio_effect;
356 in->stream.set_gain = in_set_gain;
357 in->stream.read = in_read;
358 in->stream.get_input_frames_lost = in_get_input_frames_lost;
360 *stream_in = &in->stream;
364 free(in);
370 struct audio_stream_in *in)