HomeSort by relevance Sort by last modified time
    Searched refs:snd_hwdep_dsp_image_t (Results 1 - 2 of 2) sorted by null

  /device/samsung/crespo/alsa-lib/include/
hwdep.h 51 typedef struct _snd_hwdep_dsp_image snd_hwdep_dsp_image_t; typedef in typeref:struct:_snd_hwdep_dsp_image
104 int snd_hwdep_dsp_load(snd_hwdep_t *hwdep, snd_hwdep_dsp_image_t *block);
137 /** allocate #snd_hwdep_dsp_image_t container on stack */
139 int snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t **ptr);
140 void snd_hwdep_dsp_image_free(snd_hwdep_dsp_image_t *obj);
141 void snd_hwdep_dsp_image_copy(snd_hwdep_dsp_image_t *dst, const snd_hwdep_dsp_image_t *src);
143 unsigned int snd_hwdep_dsp_image_get_index(const snd_hwdep_dsp_image_t *obj);
144 const char *snd_hwdep_dsp_image_get_name(const snd_hwdep_dsp_image_t *obj);
145 const void *snd_hwdep_dsp_image_get_image(const snd_hwdep_dsp_image_t *obj)
    [all...]
  /device/samsung/crespo/alsa-lib/src/hwdep/
hwdep.c 507 * \param block pointer to a snd_hwdep_dsp_image_t structure to transfer
510 int snd_hwdep_dsp_load(snd_hwdep_t *hwdep, snd_hwdep_dsp_image_t *block)
623 * \brief get size of the snd_hwdep_dsp_image_t structure in bytes
624 * \return size of the snd_hwdep_dsp_image_t structure in bytes
628 return sizeof(snd_hwdep_dsp_image_t);
632 * \brief allocate a new snd_hwdep_dsp_image_t structure
636 * Allocates a new snd_hwdep_dsp_image_t structure using the standard
639 int snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t **info)
642 *info = calloc(1, sizeof(snd_hwdep_dsp_image_t));
649 * \brief frees the snd_hwdep_dsp_image_t structur
    [all...]

Completed in 14 milliseconds