Home
last modified time | relevance | path

Searched refs:pthread_rwlock_trywrlock (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp139 INTERCEPTOR(int, pthread_rwlock_trywrlock, pthread_rwlock_t *m) { in INTERCEPTOR() argument
141 int res = REAL(pthread_rwlock_trywrlock)(m); in INTERCEPTOR()
311 INTERCEPT_FUNCTION(pthread_rwlock_trywrlock); in InitializeInterceptors()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DProcessRunLock.cpp48 if (::pthread_rwlock_trywrlock(&m_rwlock) == 0) { in TrySetRunning()
/freebsd/contrib/netbsd-tests/lib/libpthread/
H A Dt_rwlock.c98 ATF_REQUIRE_EQ(pthread_rwlock_trywrlock(&lk), EBUSY); in ATF_TC_BODY()
/freebsd/cddl/contrib/opensolaris/head/
H A Dthread.h61 #define rw_trywrlock(l) pthread_rwlock_trywrlock(l)
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DRWMutex.cpp124 int errorcode = pthread_rwlock_trywrlock(rwlock); in try_lock()
/freebsd/crypto/heimdal/include/
H A Dheim_threads.h101 #define HEIMDAL_RWLOCK_trywrlock(l) pthread_rwlock_trywrlock(l)
/freebsd/lib/libthr/
H A Dpthread.map96 pthread_rwlock_trywrlock;
/freebsd/include/
H A Dpthread.h267 int pthread_rwlock_trywrlock(pthread_rwlock_t * __rwlock)
/freebsd/lib/libc/include/
H A Dnamespace.h180 #define pthread_rwlock_trywrlock _pthread_rwlock_trywrlock macro
H A Dun-namespace.h161 #undef pthread_rwlock_trywrlock
/freebsd/lib/libthr/thread/
H A Dthr_rwlock.c51 __weak_reference(_Tthr_rwlock_trywrlock, pthread_rwlock_trywrlock);
/freebsd/lib/libc/gen/
H A DSymbol.map55 pthread_rwlock_trywrlock;
H A D_pthread_stubs.c252 STUB_FUNC1(pthread_rwlock_trywrlock, PJT_RWLOCK_TRYWRLOCK, int, void *)
/freebsd/share/man/man3/
H A DMakefile515 PTHREAD_MLINKS+=pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1543 TSAN_INTERCEPTOR(int, pthread_rwlock_trywrlock, void *m) { in TSAN_INTERCEPTOR() argument
1544 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_trywrlock, m); in TSAN_INTERCEPTOR()
1545 int res = REAL(pthread_rwlock_trywrlock)(m); in TSAN_INTERCEPTOR()
2983 TSAN_INTERCEPT(pthread_rwlock_trywrlock); in InitializeInterceptors()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt374 fun:pthread_rwlock_trywrlock=discard
H A Dlibc_ubuntu1404_abilist.txt2631 fun:pthread_rwlock_trywrlock=uninstrumented
/freebsd/sys/contrib/openzfs/lib/libzpool/
H A Dkernel.c293 error = pthread_rwlock_trywrlock(&rwlp->rw_lock); in rw_tryenter()