Home | History | Annotate | Download | only in hwdep

Lines Matching full:info

332  * \param info returned pointer
338 int snd_hwdep_info_malloc(snd_hwdep_info_t **info)
340 assert(info);
341 *info = calloc(1, sizeof(snd_hwdep_info_t));
342 if (!*info)
349 * \param info pointer to the snd_hwdep_info_t structure to free
354 void snd_hwdep_info_free(snd_hwdep_info_t *info)
356 assert(info);
357 free(info);
384 * \param info pointer to a snd_hwdep_info_t structure
387 unsigned int snd_hwdep_info_get_device(const snd_hwdep_info_t *info)
389 assert(info);
390 return info->device;
440 * \param info pointer to a snd_hwdep_info_t structure to be filled
443 int snd_hwdep_info(snd_hwdep_t *hwdep, snd_hwdep_info_t * info)
446 assert(info);
447 return hwdep->ops->info(hwdep, info);
494 * \param info pointer to a snd_hwdep_dsp_status_t structure to be filled
497 int snd_hwdep_dsp_status(snd_hwdep_t *hwdep, snd_hwdep_dsp_status_t *info)
500 assert(info);
501 return hwdep->ops->ioctl(hwdep, SNDRV_HWDEP_IOCTL_DSP_STATUS, (void*)info);
528 * \param info returned pointer
534 int snd_hwdep_dsp_status_malloc(snd_hwdep_dsp_status_t **info)
536 assert(info);
537 *info = calloc(1, sizeof(snd_hwdep_dsp_status_t));
538 if (!*info)
545 * \param info pointer to the snd_hwdep_dsp_status_t structure to free
550 void snd_hwdep_dsp_status_free(snd_hwdep_dsp_status_t *info)
552 assert(info);
553 free(info);
602 * \param info pointer to a snd_hwdep_dsp_status_t structure
605 unsigned int snd_hwdep_dsp_status_get_dsp_loaded(const snd_hwdep_dsp_status_t *info)
607 assert(info);
608 return info->dsp_loaded;
633 * \param info returned pointer
639 int snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t **info)
641 assert(info);
642 *info = calloc(1, sizeof(snd_hwdep_dsp_image_t));
643 if (!*info)
650 * \param info pointer to the snd_hwdep_dsp_image_t structure to free
655 void snd_hwdep_dsp_image_free(snd_hwdep_dsp_image_t *info)
657 assert(info);
658 free(info);