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

/netbsd-current/external/mit/libuv/dist/src/
H A Dtimer.c29 static struct heap *timer_heap(const uv_loop_t* loop) { function
31 return (struct heap*) loop->timer_heap;
33 return (struct heap*) &loop->timer_heap;
89 heap_insert(timer_heap(handle->loop),
102 heap_remove(timer_heap(handle->loop),
147 heap_node = heap_min(timer_heap(loop));
168 heap_node = heap_min(timer_heap(loop));
/netbsd-current/external/mit/libuv/dist/src/win/
H A Dcore.c229 struct heap* timer_heap; local
264 loop->timer_heap = timer_heap = uv__malloc(sizeof(*timer_heap));
265 if (timer_heap == NULL) {
270 heap_init(timer_heap);
309 uv__free(timer_heap);
310 loop->timer_heap = NULL;
366 uv__free(loop->timer_heap);
367 loop->timer_heap
[all...]
/netbsd-current/external/mit/libuv/dist/include/uv/
H A Dunix.h245 } timer_heap; \
H A Dwin.h336 /* TODO(bnoordhuis) Stop heap-allocating |timer_heap| in libuv v2.x. */ \
337 void* timer_heap; \
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dloop.c49 heap_init((struct heap*) &loop->timer_heap);

Completed in 328 milliseconds