Lines Matching refs:timers
222 if (heap_insert(ctx->timers, id) < 0) in evSetTimer()
231 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evSetTimer()
254 if (heap_element(ctx->timers, del->index) != del) in evClearTimer()
257 if (heap_delete(ctx->timers, del->index) < 0) in evClearTimer()
263 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evClearTimer()
281 if (heap_element(ctx->timers, timer->index) != timer) in evConfigTimer()
307 if (heap_element(ctx->timers, timer->index) != timer) in evResetTimer()
336 result = heap_increased(ctx->timers, timer->index); in evResetTimer()
342 result = heap_decreased(ctx->timers, timer->index); in evResetTimer()
348 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evResetTimer()
436 (void) heap_for_each(ctx->timers, free_timer, NULL); in evDestroyTimers()
437 (void) heap_free(ctx->timers); in evDestroyTimers()