HomeSort by relevance Sort by last modified time
    Searched refs:pthread_rwlock_t (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /external/valgrind/helgrind/
hg_intercepts.c     [all...]
  /bionic/libc/include/bits/
pthread_types.h 91 } pthread_rwlock_t; typedef in typeref:struct:__anon259
  /bionic/tests/headers/posix/
sys_types_h.c 58 TYPE(pthread_rwlock_t);
  /external/compiler-rt/test/tsan/
mutexset6.cc 7 pthread_rwlock_t mtx3;
  /external/libchrome/base/synchronization/
read_write_lock.h 53 using NativeHandle = pthread_rwlock_t;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_init/
3-1.c 13 * 1. Initialize a pthread_rwlock_t object 'rwlock' with pthread_rwlock_init()
28 static pthread_rwlock_t rwlock;
1-1.c 15 * 1. Initialize a pthread_rwlock_t object 'rwlock' with pthread_rwlock_init()
26 static pthread_rwlock_t rwlock;
2-1.c 14 * 1. Initialize a pthread_rwlock_t object 'rwlock' with pthread_rwlock_init(),
26 static pthread_rwlock_t rwlock;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_init/
2-1.c 14 * 2. Initialize two pthread_rwlock_t objects with this pthread_rwlockattr_t object
16 * 4. The two pthread_rwlock_t objects should safely be used to lock and unlock.
28 pthread_rwlock_t rwl1, rwl2;
  /external/valgrind/helgrind/tests/
tc12_rwl_trivial.c 16 pthread_rwlock_t rwl;
  /system/core/libbacktrace/
UnwindMap.h 68 pthread_rwlock_t map_lock_;
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 100 INTERCEPTOR(int, pthread_rwlock_destroy, pthread_rwlock_t *m) {
106 INTERCEPTOR(int, pthread_rwlock_rdlock, pthread_rwlock_t *m) {
114 INTERCEPTOR(int, pthread_rwlock_tryrdlock, pthread_rwlock_t *m) {
122 INTERCEPTOR(int, pthread_rwlock_timedrdlock, pthread_rwlock_t *m,
131 INTERCEPTOR(int, pthread_rwlock_wrlock, pthread_rwlock_t *m) {
139 INTERCEPTOR(int, pthread_rwlock_trywrlock, pthread_rwlock_t *m) {
147 INTERCEPTOR(int, pthread_rwlock_timedwrlock, pthread_rwlock_t *m,
156 INTERCEPTOR(int, pthread_rwlock_unlock, pthread_rwlock_t *m) {
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 73 pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr);
74 extern "C" int __interceptor_pthread_rwlock_destroy(pthread_rwlock_t *rwlock);
75 extern "C" int __interceptor_pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock);
76 extern "C" int __interceptor_pthread_rwlock_wrlock(pthread_rwlock_t *rwlock);
77 extern "C" int __interceptor_pthread_rwlock_unlock(pthread_rwlock_t *rwlock);
78 extern "C" int __interceptor_pthread_rwlock_rdlock(pthread_rwlock_t *rwlock);
79 extern "C" int __interceptor_pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock);
156 CHECK_EQ(__interceptor_pthread_rwlock_init((pthread_rwlock_t*)mtx_, 0), 0);
179 CHECK_EQ(__interceptor_pthread_rwlock_destroy((pthread_rwlock_t*)mtx_), 0);
191 CHECK_EQ(__interceptor_pthread_rwlock_wrlock((pthread_rwlock_t*)mtx_), 0)
    [all...]
  /external/libnl/include/netlink-private/
netlink.h 232 #define NL_RW_LOCK(NAME) pthread_rwlock_t (NAME) = PTHREAD_RWLOCK_INITIALIZER
244 static inline void nl_read_lock(pthread_rwlock_t *lock)
249 static inline void nl_read_unlock(pthread_rwlock_t *lock)
254 static inline void nl_write_lock(pthread_rwlock_t *lock)
259 static inline void nl_write_unlock(pthread_rwlock_t *lock)
  /external/valgrind/drd/
drd_pthread_intercepts.c 81 * - pthread_rwlock_t == rwlock_t
    [all...]
  /external/honggfuzz/libcommon/
util.h 112 extern void util_mutexRWLockRead(pthread_rwlock_t* mutex, const char* func, int line);
113 extern void util_mutexRWLockWrite(pthread_rwlock_t* mutex, const char* func, int line);
114 extern void util_mutexRWUnlock(pthread_rwlock_t* mutex, const char* func, int line);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/
5-1.c 7 * Test that pthread_rwlock_timedrdlock(pthread_rwlock_t *rwlock)
46 pthread_rwlock_t rwlock;
91 pthread_rwlock_t rwlock;
2-1.c 7 * Test that pthread_rwlock_timedrdlock(pthread_rwlock_t *rwlock)
15 * 1. Initialize a pthread_rwlock_t object 'rwlock' with pthread_rwlock_init()
44 static pthread_rwlock_t rwlock;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedwrlock/
5-1.c 7 * Test that pthread_rwlock_timedwrlock(pthread_rwlock_t *rwlock)
53 pthread_rwlock_t rwlock;
98 pthread_rwlock_t rwlock;
2-1.c 7 * Test that pthread_rwlock_timedwrlock(pthread_rwlock_t *rwlock)
36 static pthread_rwlock_t rwlock;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
libc-lock.h 53 typedef pthread_rwlock_t __libc_rwlock_t;
566 extern int __pthread_rwlock_init (pthread_rwlock_t *__rwlock,
569 extern int __pthread_rwlock_destroy (pthread_rwlock_t *__rwlock);
571 extern int __pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock);
573 extern int __pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock);
575 extern int __pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock);
577 extern int __pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock);
579 extern int __pthread_rwlock_unlock (pthread_rwlock_t *__rwlock);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
libc-lock.h 53 typedef pthread_rwlock_t __libc_rwlock_t;
566 extern int __pthread_rwlock_init (pthread_rwlock_t *__rwlock,
569 extern int __pthread_rwlock_destroy (pthread_rwlock_t *__rwlock);
571 extern int __pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock);
573 extern int __pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock);
575 extern int __pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock);
577 extern int __pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock);
579 extern int __pthread_rwlock_unlock (pthread_rwlock_t *__rwlock);
  /external/boringssl/src/include/openssl/
thread.h 81 typedef pthread_rwlock_t CRYPTO_MUTEX;
84 // |pthread_rwlock_t| that we need is hidden under feature flags, and we can't
86 // structure is large enough to contain a |pthread_rwlock_t| by
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_unlock/
2-1.c 7 * Test that pthread_rwlock_unlock(pthread_rwlock_t *rwlock)
18 * 1. Initialize a pthread_rwlock_t object 'rwlock' with pthread_rwlock_init()
31 static pthread_rwlock_t rwlock;
4-2.c 7 * Test that pthread_rwlock_unlock(pthread_rwlock_t *rwlock)
17 * 1. Initialize a pthread_rwlock_t object 'rwlock' with pthread_rwlock_init()
32 static pthread_rwlock_t rwlock;

Completed in 648 milliseconds

12 3 4 5