Lines Matching refs:mtx_init
65 VERIFY3S(mtx_init(&mtx, mtx_plain), ==, thrd_success); in cthr_test_mtx_init()
67 VERIFY3S(mtx_init(&mtx, mtx_timed), ==, thrd_success); in cthr_test_mtx_init()
69 VERIFY3S(mtx_init(&mtx, mtx_plain | mtx_recursive), ==, thrd_success); in cthr_test_mtx_init()
71 VERIFY3S(mtx_init(&mtx, mtx_timed | mtx_recursive), ==, thrd_success); in cthr_test_mtx_init()
74 VERIFY3S(mtx_init(&mtx, UINT32_MAX), ==, thrd_error); in cthr_test_mtx_init()
75 VERIFY3S(mtx_init(&mtx, 42), ==, thrd_error); in cthr_test_mtx_init()
83 VERIFY3S(mtx_init(&mtx, mtx_plain | mtx_recursive), ==, thrd_success); in cthr_test_mtx_lockrec()
98 VERIFY3S(mtx_init(&mtx, mtx_plain), ==, thrd_success); in cthr_test_mtx_trylock()
126 VERIFY3S(mtx_init(&stress_mtx, mtx_plain), ==, thrd_success); in cthr_test_stress()
239 VERIFY3S(mtx_init(&broadcast_mtx, mtx_plain), ==, thrd_success); in cthr_test_broadcast()
279 VERIFY3S(mtx_init(&signal_mtx, mtx_plain), ==, thrd_success); in cthr_test_signal()
308 VERIFY3S(mtx_init(&mtx, mtx_plain), ==, thrd_success); in cthr_test_cndtime()
327 VERIFY3S(mtx_init(&mtx, mtx_timed), ==, thrd_success); in cthr_test_mtx_selftime()
355 VERIFY3S(mtx_init(&mtx, mtx_timed), ==, thrd_success); in cthr_test_mtx_busy()