Lines Matching refs:thrd_create
64 zassert_equal(thrd_error, thrd_create(NULL, NULL, NULL)); in ZTEST()
65 zassert_equal(thrd_error, thrd_create(NULL, NULL, ¶m)); in ZTEST()
66 zassert_equal(thrd_error, thrd_create(NULL, fun, NULL)); in ZTEST()
67 zassert_equal(thrd_error, thrd_create(NULL, fun, ¶m)); in ZTEST()
68 zassert_equal(thrd_error, thrd_create(&thr, NULL, NULL)); in ZTEST()
69 zassert_equal(thrd_error, thrd_create(&thr, NULL, ¶m)); in ZTEST()
72 zassert_equal(thrd_success, thrd_create(&thr, fun, NULL)); in ZTEST()
75 zassert_equal(thrd_success, thrd_create(&thr, fun, ¶m)); in ZTEST()
100 zassert_equal(thrd_success, thrd_create(&thr, thrd_exit_fn, ¶m)); in ZTEST()
131 zassert_equal(thrd_success, thrd_create(&child, thrd_current_equal_fn, NULL)); in ZTEST()
147 zassert_equal(thrd_success, thrd_create(&thr, thrd_detach_fn, NULL)); in ZTEST()
161 zassert_equal(thrd_success, thrd_create(&thr, thrd_create_join_fn, NULL)); in ZTEST()