OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:snd_timer_ginfo_t
(Results
1 - 4
of
4
) sorted by null
/device/samsung/crespo/alsa-lib/include/
timer.h
49
typedef struct _snd_timer_ginfo
snd_timer_ginfo_t
;
typedef in typeref:struct:_snd_timer_ginfo
144
int snd_timer_query_info(snd_timer_query_t *handle,
snd_timer_ginfo_t
*info);
184
/** allocate #
snd_timer_ginfo_t
container on stack */
186
int snd_timer_ginfo_malloc(
snd_timer_ginfo_t
**ptr);
187
void snd_timer_ginfo_free(
snd_timer_ginfo_t
*obj);
188
void snd_timer_ginfo_copy(
snd_timer_ginfo_t
*dst, const
snd_timer_ginfo_t
*src);
190
int snd_timer_ginfo_set_tid(
snd_timer_ginfo_t
*obj, snd_timer_id_t *tid);
191
snd_timer_id_t *snd_timer_ginfo_get_tid(
snd_timer_ginfo_t
*obj);
192
unsigned int snd_timer_ginfo_get_flags(
snd_timer_ginfo_t
*obj)
[
all
...]
/device/samsung/crespo/alsa-lib/src/timer/
timer_query.c
231
* \brief get size of the
snd_timer_ginfo_t
structure in bytes
232
* \return size of the
snd_timer_ginfo_t
structure in bytes
236
return sizeof(
snd_timer_ginfo_t
);
240
* \brief allocate a new
snd_timer_ginfo_t
structure
247
int snd_timer_ginfo_malloc(
snd_timer_ginfo_t
**info)
250
*info = calloc(1, sizeof(
snd_timer_ginfo_t
));
257
* \brief frees the
snd_timer_ginfo_t
structure
258
* \param info pointer to the
snd_timer_ginfo_t
structure to free
263
void snd_timer_ginfo_free(
snd_timer_ginfo_t
*info)
274
void snd_timer_ginfo_copy(
snd_timer_ginfo_t
*dst, const snd_timer_ginfo_t *src
[
all
...]
timer_local.h
56
int (*info)(snd_timer_query_t *timer,
snd_timer_ginfo_t
*info);
timer_query_hw.c
57
static int snd_timer_query_hw_info(snd_timer_query_t *handle,
snd_timer_ginfo_t
*info)
Completed in 24 milliseconds