Home
last modified time | relevance | path

Searched refs:pthread_rwlock_tryrdlock (Results 1 – 16 of 16) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp114 INTERCEPTOR(int, pthread_rwlock_tryrdlock, pthread_rwlock_t *m) { in INTERCEPTOR() argument
116 int res = REAL(pthread_rwlock_tryrdlock)(m); in INTERCEPTOR()
307 INTERCEPT_FUNCTION(pthread_rwlock_tryrdlock); in InitializeInterceptors()
/freebsd-13.1/cddl/contrib/opensolaris/head/
H A Dthread.h60 #define rw_tryrdlock(l) pthread_rwlock_tryrdlock(l)
/freebsd-13.1/contrib/apr/locks/unix/
H A Dthread_rwlock.c81 stat = pthread_rwlock_tryrdlock(&rwlock->rwlock); in apr_thread_rwlock_tryrdlock()
/freebsd-13.1/crypto/heimdal/include/
H A Dheim_threads.h100 #define HEIMDAL_RWLOCK_tryrdlock(l) pthread_rwlock_tryrdlock(l)
/freebsd-13.1/lib/libthr/
H A Dpthread.map96 pthread_rwlock_tryrdlock;
/freebsd-13.1/lib/libc/include/
H A Dnamespace.h181 #define pthread_rwlock_tryrdlock _pthread_rwlock_tryrdlock macro
H A Dun-namespace.h162 #undef pthread_rwlock_tryrdlock
/freebsd-13.1/include/
H A Dpthread.h264 int pthread_rwlock_tryrdlock(pthread_rwlock_t * __rwlock)
/freebsd-13.1/lib/libthr/thread/
H A Dthr_rwlock.c51 __weak_reference(_Tthr_rwlock_tryrdlock, pthread_rwlock_tryrdlock);
/freebsd-13.1/lib/libc/gen/
H A DSymbol.map57 pthread_rwlock_tryrdlock;
H A D_pthread_stubs.c249 STUB_FUNC1(pthread_rwlock_tryrdlock, PJT_RWLOCK_TRYRDLOCK, int, void *)
/freebsd-13.1/share/man/man3/
H A DMakefile494 PTHREAD_MLINKS+=pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1395 TSAN_INTERCEPTOR(int, pthread_rwlock_tryrdlock, void *m) { in TSAN_INTERCEPTOR() argument
1396 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_tryrdlock, m); in TSAN_INTERCEPTOR()
1397 int res = REAL(pthread_rwlock_tryrdlock)(m); in TSAN_INTERCEPTOR()
2808 TSAN_INTERCEPT(pthread_rwlock_tryrdlock); in InitializeInterceptors()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt342 fun:pthread_rwlock_tryrdlock=discard
H A Dlibc_ubuntu1404_abilist.txt2624 fun:pthread_rwlock_tryrdlock=uninstrumented
/freebsd-13.1/sys/contrib/openzfs/lib/libzpool/
H A Dkernel.c253 error = pthread_rwlock_tryrdlock(&rwlp->rw_lock); in rw_tryenter()