Home
last modified time | relevance | path

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

/bionic/tests/
Dthreads_test.cpp181 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed)); in TEST()
197 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed)); in TEST()
228 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed)); in TEST()
230 ASSERT_EQ(thrd_success, mtx_init(&m, mtx_timed | mtx_recursive)); in TEST()
282 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()