HomeSort by relevance Sort by last modified time
    Searched full:pthread_rwlock_rdlock (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/
coverage.txt 1 This document defines the coverage for the pthread_rwlock_rdlock() function:
6-2.sh 8 #If successful, the pthread_rwlock_rdlock( ) function shall return zero; otherwise, an error number
5-1.c 7 * Test that pthread_rwlock_rdlock(pthread_rwlock_t *rwlock)
39 if (pthread_rwlock_rdlock(&rwlock) != 0) {
assertions.xml 3 pthread_rwlock_rdlock( ) function shall apply a read lock to the
38 If successful, the pthread_rwlock_rdlock( ) function shall return zero;
1-1.c 7 * Test that pthread_rwlock_rdlock(pthread_rwlock_t *rwlock)
9 * pthread_rwlock_rdlock() function shall apply a read lock to the
51 rc = pthread_rwlock_rdlock(&rwlock);
85 if (pthread_rwlock_rdlock(&rwlock) != 0) {
  /external/compiler-rt/test/tsan/
bench_rwmutex.cc 13 pthread_rwlock_rdlock(&mtx);
22 pthread_rwlock_rdlock(&mtx);
write_in_reader_lock.cc 9 pthread_rwlock_rdlock(&rwlock);
20 pthread_rwlock_rdlock(&rwlock);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_init/
2-1.c 48 if ((rc = pthread_rwlock_rdlock(&rwl1)) != 0) {
49 printf("Error at pthread_rwlock_rdlock(): rwl1\n");
63 if ((rc = pthread_rwlock_rdlock(&rwl2)) != 0) {
64 printf("Error at pthread_rwlock_rdlock():rwl2\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_destroy/
3-1.c 34 if (pthread_rwlock_rdlock(&rwlock) != 0) {
35 printf("Error at pthread_rwlock_rdlock()\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_tryrdlock/
assertions.xml 4 pthread_rwlock_rdlock( ) function, with the exception that the function shall fail
5 if the equivalent pthread_rwlock_rdlock( ) call would have blocked the calling thread.
  /external/valgrind/drd/tests/
hold_lock.c 69 pthread_rwlock_rdlock(&rwlock);
71 pthread_rwlock_rdlock(&rwlock);
rwlock_race.c 28 pthread_rwlock_rdlock(&s_rwlock);
trylock.c 42 fprintf(stderr, "Locking rwlock via pthread_rwlock_rdlock().\n");
43 r = pthread_rwlock_rdlock(&rwlock); assert(r == 0);
44 r = pthread_rwlock_rdlock(&rwlock); assert(r == 0);
45 r = pthread_rwlock_rdlock(&rwlock); assert(r == 0);
hold_lock_2.stderr.exp 6 at 0x........: pthread_rwlock_rdlock (drd_pthread_intercepts.c:?)
trylock.stderr.exp 5 Locking rwlock via pthread_rwlock_rdlock().
  /external/valgrind/helgrind/tests/
tc12_rwl_trivial.c 23 r = pthread_rwlock_rdlock( &rwl ); assert(r == 0);
24 r = pthread_rwlock_rdlock( &rwl ); assert(r == 0);
  /bionic/libc/upstream-netbsd/android/include/
reentrant.h 36 #define rwlock_rdlock pthread_rwlock_rdlock
  /external/libchrome/base/synchronization/
read_write_lock_posix.cc 20 int result = pthread_rwlock_rdlock(&native_handle_);
  /external/webrtc/webrtc/system_wrappers/source/
rw_lock_posix.cc 44 pthread_rwlock_rdlock(&lock_);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_init/
1-1.c 36 rc = pthread_rwlock_rdlock(&rwlock);
45 printf("Error in pthread_rwlock_rdlock().\n");
2-1.c 36 rc = pthread_rwlock_rdlock(&rwlock);
45 printf("Error in pthread_rwlock_rdlock().\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/
1-1.c 10 * rwlock as in the pthread_rwlock_rdlock(). However, if the lock cannot be
16 * 2. Main thread lock 'rwlock' for reading with pthread_rwlock_rdlock()
99 if (pthread_rwlock_rdlock(&rwlock) != 0) {
100 printf("main: Error at pthread_rwlock_rdlock()\n");
3-1.c 10 * rwlock as in the pthread_rwlock_rdlock(). However, if the lock cannot be
16 * 2. Main thread lock 'rwlock' for reading with pthread_rwlock_rdlock()
113 if (pthread_rwlock_rdlock(&rwlock) != 0) {
114 printf("main: Error at pthread_rwlock_rdlock()\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_unlock/
1-1.c 57 if (pthread_rwlock_rdlock(&rwlock) != 0) {
73 if (pthread_rwlock_rdlock(&rwlock) != 0) {
122 if (pthread_rwlock_rdlock(&rwlock) != 0) {
123 printf("main: Error at pthread_rwlock_rdlock()\n");
  /system/core/libbacktrace/
UnwindMap.h 60 void LockIterator() override { pthread_rwlock_rdlock(&map_lock_); }

Completed in 3933 milliseconds

1 2 3 4 5 6 7 8 91011