Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_rwlock.cpp157 struct pthread_rwlock_internal_t { struct
214 static_assert(sizeof(pthread_rwlock_t) == sizeof(pthread_rwlock_internal_t),
222 static inline __always_inline pthread_rwlock_internal_t* __get_internal_rwlock(pthread_rwlock_t* rw… in __get_internal_rwlock()
223 return reinterpret_cast<pthread_rwlock_internal_t*>(rwlock_interface); in __get_internal_rwlock()
227 pthread_rwlock_internal_t* rwlock = __get_internal_rwlock(rwlock_interface); in pthread_rwlock_init()
229 memset(rwlock, 0, sizeof(pthread_rwlock_internal_t)); in pthread_rwlock_init()
255 pthread_rwlock_internal_t* rwlock = __get_internal_rwlock(rwlock_interface); in pthread_rwlock_destroy()
272 static inline __always_inline int __pthread_rwlock_tryrdlock(pthread_rwlock_internal_t* rwlock) { in __pthread_rwlock_tryrdlock()
289 static int __pthread_rwlock_timedrdlock(pthread_rwlock_internal_t* rwlock, in __pthread_rwlock_timedrdlock()
348 static inline __always_inline int __pthread_rwlock_trywrlock(pthread_rwlock_internal_t* rwlock) { in __pthread_rwlock_trywrlock()
[all …]