OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:snd_timer_status_t
(Results
1 - 5
of
5
) sorted by null
/device/samsung/crespo/alsa-lib/include/
timer.h
59
typedef struct _snd_timer_status
snd_timer_status_t
;
typedef in typeref:struct:_snd_timer_status
159
int snd_timer_status(snd_timer_t *handle,
snd_timer_status_t
*status);
235
/** allocate #
snd_timer_status_t
container on stack */
237
int snd_timer_status_malloc(
snd_timer_status_t
**ptr);
238
void snd_timer_status_free(
snd_timer_status_t
*obj);
239
void snd_timer_status_copy(
snd_timer_status_t
*dst, const
snd_timer_status_t
*src);
241
snd_htimestamp_t snd_timer_status_get_timestamp(
snd_timer_status_t
* status);
242
long snd_timer_status_get_resolution(
snd_timer_status_t
* status);
243
long snd_timer_status_get_lost(
snd_timer_status_t
* status)
[
all
...]
/device/samsung/crespo/alsa-lib/src/timer/
timer.c
781
* \brief get size of the
snd_timer_status_t
structure in bytes
782
* \return size of the
snd_timer_status_t
structure in bytes
786
return sizeof(
snd_timer_status_t
);
790
* \brief allocate a new
snd_timer_status_t
structure
794
* Allocates a new
snd_timer_status_t
structure using the standard
797
int snd_timer_status_malloc(
snd_timer_status_t
**status)
800
*status = calloc(1, sizeof(
snd_timer_status_t
));
807
* \brief frees the
snd_timer_status_t
structure
808
* \param status pointer to the
snd_timer_status_t
structure to free
810
* Frees the given
snd_timer_status_t
structure using the standar
[
all
...]
timer_local.h
34
int (*status)(snd_timer_t *timer,
snd_timer_status_t
*status);
timer_hw.c
130
static int snd_timer_hw_status(snd_timer_t *handle,
snd_timer_status_t
* status)
/device/samsung/crespo/alsa-lib/test/
timer.c
10
snd_timer_status_t
*status;
Completed in 53 milliseconds