Lines Matching refs:ASSERT_OK
49 ASSERT_OK(uv_get_process_title(buffer, sizeof(buffer))); in getter_thread_body()
73 ASSERT_OK(uv_set_process_title(titles[0])); in setter_thread_body()
74 ASSERT_OK(uv_set_process_title(titles[1])); in setter_thread_body()
75 ASSERT_OK(uv_set_process_title(titles[2])); in setter_thread_body()
76 ASSERT_OK(uv_set_process_title(titles[3])); in setter_thread_body()
92 ASSERT_OK(uv_set_process_title(titles[0])); in TEST_IMPL()
94 ASSERT_OK(uv_sem_init(&getter_sem, 0)); in TEST_IMPL()
95 ASSERT_OK(uv_thread_create(&getter_thread, getter_thread_body, &getter_sem)); in TEST_IMPL()
98 ASSERT_OK(uv_thread_create(&setter_threads[i], setter_thread_body, NULL)); in TEST_IMPL()
101 ASSERT_OK(uv_thread_join(&setter_threads[i])); in TEST_IMPL()
104 ASSERT_OK(uv_thread_join(&getter_thread)); in TEST_IMPL()