Home
last modified time | relevance | path

Searched refs:timer_heap (Results 1 – 5 of 5) sorted by relevance

/libuv/src/
H A Dtimer.c29 static struct heap *timer_heap(const uv_loop_t* loop) { in timer_heap() function
31 return (struct heap*) loop->timer_heap; in timer_heap()
33 return (struct heap*) &loop->timer_heap; in timer_heap()
89 heap_insert(timer_heap(handle->loop), in uv_timer_start()
100 heap_remove(timer_heap(handle->loop), in uv_timer_stop()
149 heap_node = heap_min(timer_heap(loop)); in uv__next_timeout()
174 heap_node = heap_min(timer_heap(loop)); in uv__run_timers()
/libuv/src/win/
H A Dcore.c229 struct heap* timer_heap; in uv_loop_init() local
267 loop->timer_heap = timer_heap = uv__malloc(sizeof(*timer_heap)); in uv_loop_init()
268 if (timer_heap == NULL) { in uv_loop_init()
273 heap_init(timer_heap); in uv_loop_init()
309 uv__free(timer_heap); in uv_loop_init()
310 loop->timer_heap = NULL; in uv_loop_init()
366 uv__free(loop->timer_heap); in uv__loop_close()
367 loop->timer_heap = NULL; in uv__loop_close()
/libuv/src/unix/
H A Dloop.c52 heap_init((struct heap*) &loop->timer_heap); in uv_loop_init()
/libuv/include/uv/
H A Dunix.h244 } timer_heap; \
H A Dwin.h339 void* timer_heap; \

Completed in 16 milliseconds