Lines Matching refs:priority
27 int priority;
45 set this specific priority. */
50 ASSERT_OK(uv_os_getpriority(0, &priority));
52 /* Verify that the priority values match on Unix, and are range mapped
55 ASSERT_EQ(priority, i);
60 ASSERT(priority == UV_PRIORITY_HIGHEST || priority == UV_PRIORITY_HIGH);
62 ASSERT_EQ(priority, UV_PRIORITY_HIGH);
64 ASSERT_EQ(priority, UV_PRIORITY_ABOVE_NORMAL);
66 ASSERT_EQ(priority, UV_PRIORITY_NORMAL);
68 ASSERT_EQ(priority, UV_PRIORITY_BELOW_NORMAL);
70 ASSERT_EQ(priority, UV_PRIORITY_LOW);
75 ASSERT_EQ(priority, r);