Home
last modified time | relevance | path

Searched refs:UV_PRIORITY_LOW (Results 1 – 6 of 6) sorted by relevance

/third_party/libuv/test/
Dtest-process-priority.c41 for (i = UV_PRIORITY_HIGHEST; i <= UV_PRIORITY_LOW; i++) { in TEST_IMPL()
67 else if (i < UV_PRIORITY_LOW) in TEST_IMPL()
70 ASSERT(priority == UV_PRIORITY_LOW); in TEST_IMPL()
80 ASSERT(uv_os_setpriority(0, UV_PRIORITY_LOW + 1) == UV_EINVAL); in TEST_IMPL()
/third_party/libuv/src/win/
Dutil.c1674 *priority = UV_PRIORITY_LOW; in uv_os_getpriority()
1690 if (priority < UV_PRIORITY_HIGHEST || priority > UV_PRIORITY_LOW) in uv_os_setpriority()
1700 else if (priority < UV_PRIORITY_LOW) in uv_os_setpriority()
/third_party/node/src/
Dnode_constants.cc763 #ifdef UV_PRIORITY_LOW in DefinePriorityConstants()
764 # define PRIORITY_LOW UV_PRIORITY_LOW in DefinePriorityConstants()
/third_party/libuv/include/
Duv.h1227 # define UV_PRIORITY_LOW 39 /* RUNPTY(99) */ macro
1234 # define UV_PRIORITY_LOW 19 macro
/third_party/libuv/docs/src/
Dmisc.rst695 The constants `UV_PRIORITY_LOW`, `UV_PRIORITY_BELOW_NORMAL`,
713 `UV_PRIORITY_BELOW_NORMAL` is 15 and `UV_PRIORITY_LOW` is 39.
/third_party/libuv/src/unix/
Dcore.c1437 if (priority < UV_PRIORITY_HIGHEST || priority > UV_PRIORITY_LOW) in uv_os_setpriority()