Home
last modified time | relevance | path

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

/development/ndk/platforms/android-L/include/
Dpthread.h112 } pthread_rwlock_t; typedef
219 int pthread_rwlock_destroy(pthread_rwlock_t*) __nonnull((1));
220 int pthread_rwlock_init(pthread_rwlock_t*, const pthread_rwlockattr_t*) __nonnull((1));
221 int pthread_rwlock_rdlock(pthread_rwlock_t*) __nonnull((1));
222 int pthread_rwlock_timedrdlock(pthread_rwlock_t*, const struct timespec*) __nonnull((1, 2));
223 int pthread_rwlock_timedwrlock(pthread_rwlock_t*, const struct timespec*) __nonnull((1, 2));
224 int pthread_rwlock_tryrdlock(pthread_rwlock_t*) __nonnull((1));
225 int pthread_rwlock_trywrlock(pthread_rwlock_t*) __nonnull((1));
226 int pthread_rwlock_unlock(pthread_rwlock_t *rwlock) __nonnull((1));
227 int pthread_rwlock_wrlock(pthread_rwlock_t*) __nonnull((1));
/development/ndk/platforms/android-9/include/
Dpthread.h242 } pthread_rwlock_t; typedef
251 int pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr);
252 int pthread_rwlock_destroy(pthread_rwlock_t *rwlock);
254 int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock);
255 int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock);
256 int pthread_rwlock_timedrdlock(pthread_rwlock_t *rwlock, const struct timespec *abs_timeout);
258 int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock);
259 int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock);
260 int pthread_rwlock_timedwrlock(pthread_rwlock_t *rwlock, const struct timespec *abs_timeout);
262 int pthread_rwlock_unlock(pthread_rwlock_t *rwlock);
/development/ndk/sources/android/libportable/arch-mips/
Dpthread.c226 PTHREAD_WRAPPER(pthread_rwlock_init, (pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr),
229 PTHREAD_WRAPPER(pthread_rwlock_destroy, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
231 PTHREAD_WRAPPER(pthread_rwlock_rdlock, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
233 PTHREAD_WRAPPER(pthread_rwlock_tryrdlock, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
235 PTHREAD_WRAPPER(pthread_rwlock_timedrdlock, (pthread_rwlock_t *rwlock,
239 PTHREAD_WRAPPER(pthread_rwlock_wrlock, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
241 PTHREAD_WRAPPER(pthread_rwlock_trywrlock, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
243 PTHREAD_WRAPPER(pthread_rwlock_timedwrlock, (pthread_rwlock_t *rwlock,
247 PTHREAD_WRAPPER(pthread_rwlock_unlock, (pthread_rwlock_t *rwlock), (rwlock), "(rwlock:%p)");
/development/ndk/platforms/android-3/include/sys/
Dtypes.h83 typedef .... pthread_rwlock_t;
/development/ndk/platforms/android-L/include/sys/
Dtypes.h115 typedef .... pthread_rwlock_t;