Home
last modified time | relevance | path

Searched refs:pthread_rwlock_t (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/bionic/
Dpthread_rwlock.cpp68 static inline bool rwlock_is_shared(const pthread_rwlock_t* rwlock) { in rwlock_is_shared()
107 int pthread_rwlock_init(pthread_rwlock_t* rwlock, const pthread_rwlockattr_t* attr) { in pthread_rwlock_init()
127 int pthread_rwlock_destroy(pthread_rwlock_t* rwlock) { in pthread_rwlock_destroy()
134 static int __pthread_rwlock_timedrdlock(pthread_rwlock_t* rwlock, const timespec* abs_timeout) { in __pthread_rwlock_timedrdlock()
169 static int __pthread_rwlock_timedwrlock(pthread_rwlock_t* rwlock, const timespec* abs_timeout) { in __pthread_rwlock_timedwrlock()
203 int pthread_rwlock_rdlock(pthread_rwlock_t* rwlock) { in pthread_rwlock_rdlock()
207 int pthread_rwlock_timedrdlock(pthread_rwlock_t* rwlock, const timespec* abs_timeout) { in pthread_rwlock_timedrdlock()
211 int pthread_rwlock_tryrdlock(pthread_rwlock_t* rwlock) { in pthread_rwlock_tryrdlock()
220 int pthread_rwlock_wrlock(pthread_rwlock_t* rwlock) { in pthread_rwlock_wrlock()
224 int pthread_rwlock_timedwrlock(pthread_rwlock_t* rwlock, const timespec* abs_timeout) { in pthread_rwlock_timedwrlock()
[all …]
/bionic/libc/include/
Dpthread.h112 } pthread_rwlock_t; typedef
221 int pthread_rwlock_destroy(pthread_rwlock_t*) __nonnull((1));
222 int pthread_rwlock_init(pthread_rwlock_t*, const pthread_rwlockattr_t*) __nonnull((1));
223 int pthread_rwlock_rdlock(pthread_rwlock_t*) __nonnull((1));
224 int pthread_rwlock_timedrdlock(pthread_rwlock_t*, const struct timespec*) __nonnull((1, 2));
225 int pthread_rwlock_timedwrlock(pthread_rwlock_t*, const struct timespec*) __nonnull((1, 2));
226 int pthread_rwlock_tryrdlock(pthread_rwlock_t*) __nonnull((1));
227 int pthread_rwlock_trywrlock(pthread_rwlock_t*) __nonnull((1));
228 int pthread_rwlock_unlock(pthread_rwlock_t *rwlock) __nonnull((1));
229 int pthread_rwlock_wrlock(pthread_rwlock_t*) __nonnull((1));
/bionic/libc/upstream-netbsd/android/include/
Dreentrant.h35 #define rwlock_t pthread_rwlock_t
/bionic/libc/include/sys/
Dtypes.h115 typedef .... pthread_rwlock_t;
/bionic/tests/
Dpthread_test.cpp626 pthread_rwlock_t l; in TEST()