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.cpp1103 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedrdlock_timeout_helper() argument
1141 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1142 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1152 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1153 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()
1171 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedwrlock_timeout_helper() argument
1209 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1210 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1220 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1221 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()