Lines Matching defs:handler
292 * \brief Add an async handler for a timer
293 * \param handler Returned handler handle
301 int snd_async_add_timer_handler(snd_async_handler_t **handler, snd_timer_t *timer,
322 *handler = h;
327 * \brief Return timer handle related to an async handler
328 * \param handler Async handler handle
331 snd_timer_t *snd_async_handler_get_timer(snd_async_handler_t *handler)
333 if (handler->type != SND_ASYNC_HANDLER_TIMER) {
334 SNDMSG("invalid handler type %d", handler->type);
337 return handler->u.timer;