Lines Matching refs:timers
213 if (heap_insert(ctx->timers, id) < 0) in evSetTimer()
222 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evSetTimer()
245 if (heap_element(ctx->timers, del->index) != del) in evClearTimer()
248 if (heap_delete(ctx->timers, del->index) < 0) in evClearTimer()
254 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evClearTimer()
272 if (heap_element(ctx->timers, timer->index) != timer) in evConfigTimer()
298 if (heap_element(ctx->timers, timer->index) != timer) in evResetTimer()
327 result = heap_increased(ctx->timers, timer->index); in evResetTimer()
333 result = heap_decreased(ctx->timers, timer->index); in evResetTimer()
339 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx); in evResetTimer()
427 (void) heap_for_each(ctx->timers, free_timer, NULL); in evDestroyTimers()
428 (void) heap_free(ctx->timers); in evDestroyTimers()