Home
last modified time | relevance | path

Searched refs:__rwlock (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/include/
Dpthread.h237 int pthread_rwlock_clockrdlock(pthread_rwlock_t* __rwlock, clockid_t __clock,
239 int pthread_rwlock_clockwrlock(pthread_rwlock_t* __rwlock, clockid_t __clock,
241 int pthread_rwlock_destroy(pthread_rwlock_t* __rwlock);
242 int pthread_rwlock_init(pthread_rwlock_t* __rwlock, const pthread_rwlockattr_t* __attr);
243 int pthread_rwlock_rdlock(pthread_rwlock_t* __rwlock);
244 int pthread_rwlock_timedrdlock(pthread_rwlock_t* __rwlock, const struct timespec* __timeout);
246 int pthread_rwlock_timedrdlock_monotonic_np(pthread_rwlock_t* __rwlock,
248 int pthread_rwlock_timedwrlock(pthread_rwlock_t* __rwlock, const struct timespec* __timeout);
250 int pthread_rwlock_timedwrlock_monotonic_np(pthread_rwlock_t* __rwlock,
252 int pthread_rwlock_tryrdlock(pthread_rwlock_t* __rwlock);
[all …]
/bionic/tests/
Dpthread_test.cpp1104 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedrdlock_timeout_helper() argument
1142 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1143 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1153 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1154 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()
1172 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedwrlock_timeout_helper() argument
1210 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1211 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1221 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1222 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()