Home
last modified time | relevance | path

Searched refs:mtx_timed (Results 1 – 4 of 4) sorted by relevance

/bionic/tests/
Dthreads_test.cpp182 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed)); in TEST()
198 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed)); in TEST()
229 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed)); in TEST()
231 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed | mtx_recursive)); in TEST()
283 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed)); in TEST()
/bionic/tests/headers/posix/
Dthreads_h.c51 int enumeration_constants = mtx_plain | mtx_recursive | mtx_timed | in threads_h()
/bionic/libc/include/
Dthreads.h64 mtx_timed = 0x4, enumerator
/bionic/libc/include/bits/
Dthreads_inlines.h94 if (__type != mtx_plain && __type != mtx_timed) return thrd_error; in mtx_init()