Home | History | Annotate | Download | only in isc

Lines Matching refs:timers

20 /* ev_timers.c - implement timers for the eventlib
230 if (heap_insert(ctx->timers, id) < 0)
238 evPrintf(ctx, 7, "timers after evSetTimer:\n");
239 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx);
262 if (heap_element(ctx->timers, del->index) != del)
265 if (heap_delete(ctx->timers, del->index) < 0)
270 evPrintf(ctx, 7, "timers after evClearTimer:\n");
271 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx);
289 if (heap_element(ctx->timers, timer->index) != timer)
315 if (heap_element(ctx->timers, timer->index) != timer)
344 result = heap_increased(ctx->timers, timer->index);
350 result = heap_decreased(ctx->timers, timer->index);
355 evPrintf(ctx, 7, "timers after evResetTimer:\n");
356 (void) heap_for_each(ctx->timers, print_timer, (void *)ctx);
444 (void) heap_for_each(ctx->timers, free_timer, NULL);
445 (void) heap_free(ctx->timers);