Lines Matching refs:buffer

329 				   struct snd_info_buffer *buffer)  in snd_pcm_proc_info_read()  argument
343 snd_iprintf(buffer, "error %d\n", err); in snd_pcm_proc_info_read()
346 snd_iprintf(buffer, "card: %d\n", info->card); in snd_pcm_proc_info_read()
347 snd_iprintf(buffer, "device: %d\n", info->device); in snd_pcm_proc_info_read()
348 snd_iprintf(buffer, "subdevice: %d\n", info->subdevice); in snd_pcm_proc_info_read()
349 snd_iprintf(buffer, "stream: %s\n", snd_pcm_stream_name(info->stream)); in snd_pcm_proc_info_read()
350 snd_iprintf(buffer, "id: %s\n", info->id); in snd_pcm_proc_info_read()
351 snd_iprintf(buffer, "name: %s\n", info->name); in snd_pcm_proc_info_read()
352 snd_iprintf(buffer, "subname: %s\n", info->subname); in snd_pcm_proc_info_read()
353 snd_iprintf(buffer, "class: %d\n", info->dev_class); in snd_pcm_proc_info_read()
354 snd_iprintf(buffer, "subclass: %d\n", info->dev_subclass); in snd_pcm_proc_info_read()
355 snd_iprintf(buffer, "subdevices_count: %d\n", info->subdevices_count); in snd_pcm_proc_info_read()
356 snd_iprintf(buffer, "subdevices_avail: %d\n", info->subdevices_avail); in snd_pcm_proc_info_read()
360 struct snd_info_buffer *buffer) in snd_pcm_stream_proc_info_read() argument
363 buffer); in snd_pcm_stream_proc_info_read()
367 struct snd_info_buffer *buffer) in snd_pcm_substream_proc_info_read() argument
369 snd_pcm_proc_info_read(entry->private_data, buffer); in snd_pcm_substream_proc_info_read()
373 struct snd_info_buffer *buffer) in snd_pcm_substream_proc_hw_params_read() argument
381 snd_iprintf(buffer, "closed\n"); in snd_pcm_substream_proc_hw_params_read()
385 snd_iprintf(buffer, "no setup\n"); in snd_pcm_substream_proc_hw_params_read()
388 snd_iprintf(buffer, "access: %s\n", snd_pcm_access_name(runtime->access)); in snd_pcm_substream_proc_hw_params_read()
389 snd_iprintf(buffer, "format: %s\n", snd_pcm_format_name(runtime->format)); in snd_pcm_substream_proc_hw_params_read()
390 snd_iprintf(buffer, "subformat: %s\n", snd_pcm_subformat_name(runtime->subformat)); in snd_pcm_substream_proc_hw_params_read()
391 snd_iprintf(buffer, "channels: %u\n", runtime->channels); in snd_pcm_substream_proc_hw_params_read()
392 snd_iprintf(buffer, "rate: %u (%u/%u)\n", runtime->rate, runtime->rate_num, runtime->rate_den); in snd_pcm_substream_proc_hw_params_read()
393 snd_iprintf(buffer, "period_size: %lu\n", runtime->period_size); in snd_pcm_substream_proc_hw_params_read()
394 snd_iprintf(buffer, "buffer_size: %lu\n", runtime->buffer_size); in snd_pcm_substream_proc_hw_params_read()
397 snd_iprintf(buffer, "OSS format: %s\n", snd_pcm_oss_format_name(runtime->oss.format)); in snd_pcm_substream_proc_hw_params_read()
398 snd_iprintf(buffer, "OSS channels: %u\n", runtime->oss.channels); in snd_pcm_substream_proc_hw_params_read()
399 snd_iprintf(buffer, "OSS rate: %u\n", runtime->oss.rate); in snd_pcm_substream_proc_hw_params_read()
400 snd_iprintf(buffer, "OSS period bytes: %lu\n", (unsigned long)runtime->oss.period_bytes); in snd_pcm_substream_proc_hw_params_read()
401 snd_iprintf(buffer, "OSS periods: %u\n", runtime->oss.periods); in snd_pcm_substream_proc_hw_params_read()
402 snd_iprintf(buffer, "OSS period frames: %lu\n", (unsigned long)runtime->oss.period_frames); in snd_pcm_substream_proc_hw_params_read()
408 struct snd_info_buffer *buffer) in snd_pcm_substream_proc_sw_params_read() argument
416 snd_iprintf(buffer, "closed\n"); in snd_pcm_substream_proc_sw_params_read()
420 snd_iprintf(buffer, "no setup\n"); in snd_pcm_substream_proc_sw_params_read()
423 snd_iprintf(buffer, "tstamp_mode: %s\n", snd_pcm_tstamp_mode_name(runtime->tstamp_mode)); in snd_pcm_substream_proc_sw_params_read()
424 snd_iprintf(buffer, "period_step: %u\n", runtime->period_step); in snd_pcm_substream_proc_sw_params_read()
425 snd_iprintf(buffer, "avail_min: %lu\n", runtime->control->avail_min); in snd_pcm_substream_proc_sw_params_read()
426 snd_iprintf(buffer, "start_threshold: %lu\n", runtime->start_threshold); in snd_pcm_substream_proc_sw_params_read()
427 snd_iprintf(buffer, "stop_threshold: %lu\n", runtime->stop_threshold); in snd_pcm_substream_proc_sw_params_read()
428 snd_iprintf(buffer, "silence_threshold: %lu\n", runtime->silence_threshold); in snd_pcm_substream_proc_sw_params_read()
429 snd_iprintf(buffer, "silence_size: %lu\n", runtime->silence_size); in snd_pcm_substream_proc_sw_params_read()
430 snd_iprintf(buffer, "boundary: %lu\n", runtime->boundary); in snd_pcm_substream_proc_sw_params_read()
434 struct snd_info_buffer *buffer) in snd_pcm_substream_proc_status_read() argument
444 snd_iprintf(buffer, "closed\n"); in snd_pcm_substream_proc_status_read()
450 snd_iprintf(buffer, "error %d\n", err); in snd_pcm_substream_proc_status_read()
453 snd_iprintf(buffer, "state: %s\n", snd_pcm_state_name(status.state)); in snd_pcm_substream_proc_status_read()
454 snd_iprintf(buffer, "owner_pid : %d\n", pid_vnr(substream->pid)); in snd_pcm_substream_proc_status_read()
455 snd_iprintf(buffer, "trigger_time: %lld.%09lld\n", in snd_pcm_substream_proc_status_read()
457 snd_iprintf(buffer, "tstamp : %lld.%09lld\n", in snd_pcm_substream_proc_status_read()
459 snd_iprintf(buffer, "delay : %ld\n", status.delay); in snd_pcm_substream_proc_status_read()
460 snd_iprintf(buffer, "avail : %ld\n", status.avail); in snd_pcm_substream_proc_status_read()
461 snd_iprintf(buffer, "avail_max : %ld\n", status.avail_max); in snd_pcm_substream_proc_status_read()
462 snd_iprintf(buffer, "-----\n"); in snd_pcm_substream_proc_status_read()
463 snd_iprintf(buffer, "hw_ptr : %ld\n", runtime->status->hw_ptr); in snd_pcm_substream_proc_status_read()
464 snd_iprintf(buffer, "appl_ptr : %ld\n", runtime->control->appl_ptr); in snd_pcm_substream_proc_status_read()
466 snd_iprintf(buffer, "xrun_counter: %d\n", substream->xrun_counter); in snd_pcm_substream_proc_status_read()
472 struct snd_info_buffer *buffer) in snd_pcm_xrun_injection_write() argument
480 struct snd_info_buffer *buffer) in snd_pcm_xrun_debug_read() argument
483 snd_iprintf(buffer, "%d\n", pstr->xrun_debug); in snd_pcm_xrun_debug_read()
487 struct snd_info_buffer *buffer) in snd_pcm_xrun_debug_write() argument
491 if (!snd_info_get_line(buffer, line, sizeof(line))) in snd_pcm_xrun_debug_write()
1166 struct snd_info_buffer *buffer) in snd_pcm_proc_read() argument
1172 snd_iprintf(buffer, "%02i-%02i: %s : %s", in snd_pcm_proc_read()
1175 snd_iprintf(buffer, " : playback %i", in snd_pcm_proc_read()
1178 snd_iprintf(buffer, " : capture %i", in snd_pcm_proc_read()
1180 snd_iprintf(buffer, "\n"); in snd_pcm_proc_read()