MCPcopy Create free account
hub / github.com/Kitware/CMake / uv_timer_stop

Function uv_timer_stop

Utilities/cmlibuv/src/timer.c:98–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96
97
98int uv_timer_stop(uv_timer_t* handle) {
99 if (!uv__is_active(handle))
100 return 0;
101
102 heap_remove(timer_heap(handle->loop),
103 (struct heap_node*) &handle->heap_node,
104 timer_less_than);
105 uv__handle_stop(handle);
106
107 return 0;
108}
109
110
111int uv_timer_again(uv_timer_t* handle) {

Callers 12

StartJobMethod · 0.85
testTimerFunction · 0.85
uv_timer_startFunction · 0.85
uv_timer_againFunction · 0.85
uv__run_timersFunction · 0.85
uv__timer_closeFunction · 0.85
eof_timer_stopFunction · 0.85
uv_closeFunction · 0.85
stopMethod · 0.85
StartNextTestsOnTimerMethod · 0.85
OnReadMethod · 0.85
cmProcess.cxxFile · 0.85

Calls 1

timer_heapFunction · 0.85

Tested by 3

StartJobMethod · 0.68
testTimerFunction · 0.68
StartNextTestsOnTimerMethod · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…