HomeSort by relevance Sort by last modified time
    Searched refs:pthread_rwlock_init (Results 1 - 25 of 38) sorted by null

1 2

  /external/valgrind/main/memcheck/tests/darwin/
pth-supp.c 7 pthread_rwlock_init(&mutex, NULL);
  /external/valgrind/main/drd/tests/
rwlock_type_checking.c 25 pthread_rwlock_init(&posix_rwlock, 0);
27 pthread_rwlock_init((pthread_rwlock_t*)&user_defined_rwlock, 0);
rwlock_race.c 46 pthread_rwlock_init(&s_rwlock, 0);
rwlock_type_checking.stderr.exp 3 at 0x........: pthread_rwlock_init (drd_pthread_intercepts.c:?)
11 at 0x........: pthread_rwlock_init (drd_pthread_intercepts.c:?)
hold_lock.c 60 pthread_rwlock_init(&rwlock, 0);
68 pthread_rwlock_init(&rwlock, 0);
tc12_rwl_trivial.stderr.exp 6 at 0x........: pthread_rwlock_init (drd_pthread_intercepts.c:?)
hold_lock_2.stderr.exp 12 at 0x........: pthread_rwlock_init (drd_pthread_intercepts.c:?)
trylock.stderr.exp 13 at 0x........: pthread_rwlock_init (drd_pthread_intercepts.c:?)
hold_lock_1.stderr.exp 21 at 0x........: pthread_rwlock_init (drd_pthread_intercepts.c:?)
rwlock_test.c 80 pthread_rwlock_init(&s_rwlock, NULL);
trylock.c 30 r = pthread_rwlock_init(&rwlock, NULL); assert(r == 0);
  /ndk/tests/build/pthread-rwlock-initializer/jni/
test_pthread_rwlock_initializer.c 14 pthread_rwlock_init(&lock, NULL);
  /external/webrtc/src/system_wrappers/source/
rw_lock_linux.cc 25 return pthread_rwlock_init(&_lock, 0);
  /external/valgrind/main/none/tests/
pth_rwlock.c 17 if ((e = pthread_rwlock_init(locks + n, NULL)) != 0) {
18 fprintf(stderr, "pthread_rwlock_init[%d]: %s\n", n, strerror(e));
  /external/valgrind/main/helgrind/tests/
tc12_rwl_trivial.stderr.exp 8 at 0x........: pthread_rwlock_init (hg_intercepts.c:...)
tc12_rwl_trivial.c 24 r = pthread_rwlock_init( &rwl, NULL ); assert(r == 0);
tc20_verifywrap.c 172 /* pthread_rwlock_init, pthread_rwlock_unlock */
173 /* pthread_rwlock_init: can't make glibc's implementation fail.
178 r= pthread_rwlock_init( &rwl, NULL ); assert(!r);
186 r= pthread_rwlock_init( &rwl2, NULL ); assert(!r);
199 r= pthread_rwlock_init( &rwl2, NULL ); assert(!r);
216 r= pthread_rwlock_init( &rwl3, NULL ); assert(!r);
tc23_bogus_condwait.c 57 r= pthread_rwlock_init(&rwl, NULL); assert(!r);
  /system/extras/tests/bionic/libc/common/
test_pthread_rwlock.c 115 TZERO(pthread_rwlock_init(lock, attr));
126 TZERO(pthread_rwlock_init(lock, attr));
169 TZERO(pthread_rwlock_init(lock, attr));
174 TZERO(pthread_rwlock_init(lock, attr));
186 TZERO(pthread_rwlock_init(lock, attr));
191 TZERO(pthread_rwlock_init(lock, attr));
302 TZERO(pthread_rwlock_init(s->rwlock, attr));
  /external/llvm/lib/Support/
RWMutex.cpp 52 // pthread_rwlock_init does have an address, then rwlock support is enabled.
55 // Note: this line of code generates a warning if pthread_rwlock_init is not
70 // Workaround a bug/mis-feature in Darwin's pthread_rwlock_init.
75 int errorcode = pthread_rwlock_init(rwlock, NULL);
  /frameworks/base/include/utils/
threads.h 361 pthread_rwlock_init(&mRWLock, NULL);
364 pthread_rwlock_init(&mRWLock, NULL);
371 pthread_rwlock_init(&mRWLock, &attr);
374 pthread_rwlock_init(&mRWLock, NULL);
  /external/chromium/sdch/open-vcdiff/src/
mutex.h 222 if (is_safe_ && pthread_rwlock_init(&mutex_, NULL) != 0) abort();
  /bionic/libc/bionic/
pthread-rwlocks.c 112 int pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr) function
  /bionic/libc/include/
pthread.h 243 int pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr);
  /development/ndk/platforms/android-9/include/
pthread.h 245 int pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr);

Completed in 1624 milliseconds

1 2