• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/lx6464es/

Lines Matching defs:is_capture

111 	int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
116 err = lx_pipe_allocate(chip, 0, is_capture, channels);
137 int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
140 err = lx_stream_set_format(chip, runtime, 0, is_capture);
147 err = lx_pipe_start(chip, 0, is_capture);
154 err = lx_pipe_wait_for_start(chip, 0, is_capture);
168 int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
171 err = lx_pipe_pause(chip, 0, is_capture);
178 err = lx_pipe_wait_for_idle(chip, 0, is_capture);
185 err = lx_pipe_stop(chip, 0, is_capture);
199 int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
202 err = lx_pipe_release(chip, 0, is_capture);
274 int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
276 struct lx_stream *lx_stream = is_capture ? &chip->capture_stream :
293 const int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
299 if (chip->hardware_running[is_capture]) {
330 chip->hardware_running[is_capture] = 1;
343 struct snd_pcm_hw_params *hw_params, int is_capture)
356 if (is_capture)
381 int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
386 if (chip->hardware_running[is_capture]) {
401 chip->hardware_running[is_capture] = 0;
406 if (is_capture)
419 const int is_capture = lx_stream->is_capture;
438 err = lx_buffer_ask(chip, 0, is_capture, &needed, &freed,
443 err = lx_buffer_give(chip, 0, is_capture, period_bytes,
452 err = lx_buffer_ask(chip, 0, is_capture, &needed, &freed, size_array);
456 err = lx_stream_start(chip, 0, is_capture);
467 const int is_capture = lx_stream->is_capture;
471 err = lx_stream_stop(chip, 0, is_capture);
537 const int is_capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE);
538 struct lx_stream *stream = is_capture ? &chip->capture_stream :
862 chip->capture_stream.is_capture = 1;