OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:snd_hwdep_dsp_status_t
(Results
1 - 2
of
2
) sorted by null
/device/samsung/crespo/alsa-lib/include/
hwdep.h
48
typedef struct _snd_hwdep_dsp_status
snd_hwdep_dsp_status_t
;
typedef in typeref:struct:_snd_hwdep_dsp_status
103
int snd_hwdep_dsp_status(snd_hwdep_t *hwdep,
snd_hwdep_dsp_status_t
*status);
124
/** allocate #
snd_hwdep_dsp_status_t
container on stack */
126
int snd_hwdep_dsp_status_malloc(
snd_hwdep_dsp_status_t
**ptr);
127
void snd_hwdep_dsp_status_free(
snd_hwdep_dsp_status_t
*obj);
128
void snd_hwdep_dsp_status_copy(
snd_hwdep_dsp_status_t
*dst, const
snd_hwdep_dsp_status_t
*src);
130
unsigned int snd_hwdep_dsp_status_get_version(const
snd_hwdep_dsp_status_t
*obj);
131
const char *snd_hwdep_dsp_status_get_id(const
snd_hwdep_dsp_status_t
*obj);
132
unsigned int snd_hwdep_dsp_status_get_num_dsps(const
snd_hwdep_dsp_status_t
*obj)
[
all
...]
/device/samsung/crespo/alsa-lib/src/hwdep/
hwdep.c
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)
518
* \brief get size of the
snd_hwdep_dsp_status_t
structure in bytes
519
* \return size of the
snd_hwdep_dsp_status_t
structure in bytes
523
return sizeof(
snd_hwdep_dsp_status_t
);
527
* \brief allocate a new
snd_hwdep_dsp_status_t
structure
531
* Allocates a new
snd_hwdep_dsp_status_t
structure using the standard
534
int snd_hwdep_dsp_status_malloc(
snd_hwdep_dsp_status_t
**info)
537
*info = calloc(1, sizeof(
snd_hwdep_dsp_status_t
));
544
* \brief frees the
snd_hwdep_dsp_status_t
structur
[
all
...]
Completed in 83 milliseconds