Lines Matching refs:ASSERT_OK
35 ASSERT_OK(uv_prepare_stop(&prepare_handle)); in prepare_cb()
36 ASSERT_OK(prepare_cb_called); in prepare_cb()
38 ASSERT_OK(timer_cb_called); in prepare_cb()
44 ASSERT_OK(uv_timer_stop(&timer_handle)); in timer_cb()
47 ASSERT_OK(timer_cb_called); in timer_cb()
53 ASSERT_OK(uv_check_stop(&check_handle)); in check_cb()
54 ASSERT_OK(uv_timer_stop(&timer_handle)); /* Runs before timer_cb. */ in check_cb()
55 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 50, 0)); in check_cb()
56 ASSERT_OK(uv_prepare_start(&prepare_handle, prepare_cb)); in check_cb()
57 ASSERT_OK(prepare_cb_called); in check_cb()
58 ASSERT_OK(check_cb_called); in check_cb()
59 ASSERT_OK(timer_cb_called); in check_cb()
65 ASSERT_OK(uv_prepare_init(uv_default_loop(), &prepare_handle)); in TEST_IMPL()
66 ASSERT_OK(uv_check_init(uv_default_loop(), &check_handle)); in TEST_IMPL()
67 ASSERT_OK(uv_check_start(&check_handle, check_cb)); in TEST_IMPL()
68 ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle)); in TEST_IMPL()
69 ASSERT_OK(uv_timer_start(&timer_handle, timer_cb, 50, 0)); in TEST_IMPL()
70 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT)); in TEST_IMPL()
77 ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE)); in TEST_IMPL()