Lines Matching refs:cond
18 cnd_t cond; member
54 zassert_equal(thrd_error, cnd_wait(&fixture->cond, NULL)); in ZTEST_F()
60 zassert_equal(thrd_error, cnd_timedwait(&fixture->cond, NULL, NULL)); in ZTEST_F()
62 cnd_timedwait(&fixture->cond, NULL, &fixture->time_point)); in ZTEST_F()
63 zassert_equal(thrd_error, cnd_timedwait(&fixture->cond, &fixture->mutex, NULL)); in ZTEST_F()
76 res = cnd_timedwait(&fixture->cond, &fixture->mutex, &time_point); in test_cnd_thread_fn()
78 res = cnd_wait(&fixture->cond, &fixture->mutex); in test_cnd_thread_fn()
83 zassert_equal(thrd_success, cnd_signal(&fixture->cond)); in test_cnd_thread_fn()
105 zassert_equal(thrd_success, cnd_broadcast(&fixture->cond)); in tst_cnd_common()
107 zassert_equal(thrd_success, cnd_signal(&fixture->cond)); in tst_cnd_common()
161 zassert_equal(thrd_success, cnd_init(&fixture->cond)); in before()
168 cnd_destroy(&fixture->cond); in after()