Lines Matching refs:timers
205 if (heap_insert(ctx->timers, id) < 0) in evSetTimer()
214 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evSetTimer()
237 if (heap_element(ctx->timers, del->index) != del) in evClearTimer()
240 if (heap_delete(ctx->timers, del->index) < 0) in evClearTimer()
246 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evClearTimer()
264 if (heap_element(ctx->timers, timer->index) != timer) in evConfigTimer()
290 if (heap_element(ctx->timers, timer->index) != timer) in evResetTimer()
319 result = heap_increased(ctx->timers, timer->index); in evResetTimer()
325 result = heap_decreased(ctx->timers, timer->index); in evResetTimer()
331 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evResetTimer()
419 (void) heap_for_each(ctx->timers, free_timer, NULL); in evDestroyTimers()
420 (void) heap_free(ctx->timers); in evDestroyTimers()