HomeSort by relevance Sort by last modified time
    Searched full:pthread_rwlock_t (Results 101 - 125 of 443) sorted by null

1 2 3 45 6 7 8 91011>>

  /bionic/libc/include/
pthread.h 193 int pthread_rwlock_destroy(pthread_rwlock_t* _Nonnull);
194 int pthread_rwlock_init(pthread_rwlock_t* _Nonnull, const pthread_rwlockattr_t*);
195 int pthread_rwlock_rdlock(pthread_rwlock_t* _Nonnull);
196 int pthread_rwlock_timedrdlock(pthread_rwlock_t* _Nonnull, const struct timespec* _Nonnull);
197 int pthread_rwlock_timedwrlock(pthread_rwlock_t* _Nonnull, const struct timespec* _Nonnull);
198 int pthread_rwlock_tryrdlock(pthread_rwlock_t* _Nonnull);
199 int pthread_rwlock_trywrlock(pthread_rwlock_t* _Nonnull);
200 int pthread_rwlock_unlock(pthread_rwlock_t* _Nonnull);
201 int pthread_rwlock_wrlock(pthread_rwlock_t* _Nonnull);
  /bionic/libc/upstream-netbsd/android/include/
reentrant.h 35 #define rwlock_t pthread_rwlock_t
  /external/compiler-rt/test/tsan/
write_in_reader_lock.cc 4 pthread_rwlock_t rwlock;
  /external/fio/
mutex.h 19 pthread_rwlock_t lock;
  /external/valgrind/drd/tests/
rwlock_race.c 17 static pthread_rwlock_t s_rwlock;
hold_lock.c 30 pthread_rwlock_t rwlock;
  /external/webrtc/webrtc/system_wrappers/source/
rw_lock_posix.h 36 pthread_rwlock_t 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/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;
  /bionic/libc/bionic/
pthread_rwlock.cpp 214 static_assert(sizeof(pthread_rwlock_t) == sizeof(pthread_rwlock_internal_t),
215 "pthread_rwlock_t should actually be pthread_rwlock_internal_t in implementation.");
217 // For binary compatibility with old version of pthread_rwlock_t, we can't use more strict
219 static_assert(alignof(pthread_rwlock_t) == 4,
220 "pthread_rwlock_t should fulfill the alignment requirement of pthread_rwlock_internal_t.");
222 static inline __always_inline pthread_rwlock_internal_t* __get_internal_rwlock(pthread_rwlock_t* rwlock_interface) {
226 int pthread_rwlock_init(pthread_rwlock_t* rwlock_interface, const pthread_rwlockattr_t* attr) {
254 int pthread_rwlock_destroy(pthread_rwlock_t* rwlock_interface) {
412 int pthread_rwlock_rdlock(pthread_rwlock_t* rwlock_interface) {
421 int pthread_rwlock_timedrdlock(pthread_rwlock_t* rwlock_interface, const timespec* abs_timeout)
    [all...]
pthread_internal.cpp 43 static pthread_rwlock_t g_thread_list_lock = PTHREAD_RWLOCK_INITIALIZER;
47 ScopedRWLock(pthread_rwlock_t* rwlock) : rwlock_(rwlock) {
56 pthread_rwlock_t* rwlock_;
  /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/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/
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_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;
  /external/llvm/test/CodeGen/PowerPC/
2008-03-24-CoalescerBug.ll 6 %struct.PFTPersistentSymbols = type { %struct..0objc_object, %struct.VMUSymbolicator*, %struct.NSMutableArray*, %struct.__CFDictionary*, %struct.__CFDictionary*, %struct.__CFDictionary*, %struct.__CFDictionary*, %struct.NSMutableArray*, i8, %struct.pthread_mutex_t, %struct.NSMutableArray*, %struct.pthread_rwlock_t }
14 %struct.pthread_rwlock_t = type { i32, [124 x i8] }
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_wrlock/
3-1.c 7 * Test pthread_rwlock_wrlock(pthread_rwlock_t *rwlock)
30 static pthread_rwlock_t rwlock;
  /external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
2008-03-24-CoalescerBug.ll 6 %struct.PFTPersistentSymbols = type { %struct..0objc_object, %struct.VMUSymbolicator*, %struct.NSMutableArray*, %struct.__CFDictionary*, %struct.__CFDictionary*, %struct.__CFDictionary*, %struct.__CFDictionary*, %struct.NSMutableArray*, i8, %struct.pthread_mutex_t, %struct.NSMutableArray*, %struct.pthread_rwlock_t }
14 %struct.pthread_rwlock_t = type { i32, [124 x i8] }
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_destroy/
1-1.c 26 pthread_rwlock_t rwlock;
3-1.c 26 pthread_rwlock_t rwlock;
  /external/valgrind/helgrind/tests/
tc12_rwl_trivial.c 16 pthread_rwlock_t rwl;
  /system/core/libbacktrace/
UnwindMap.h 68 pthread_rwlock_t map_lock_;

Completed in 1209 milliseconds

1 2 3 45 6 7 8 91011>>