Searched refs:pthread_mutex_trylock (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dmutex_posix.cpp22 bool Mutex::tryLock() { return pthread_mutex_trylock(&Mu) == 0; }
/freebsd-13-stable/lib/libstdthreads/
H A Dmtx.c101 switch (pthread_mutex_trylock(mtx)) {
/freebsd-13-stable/contrib/ntp/lib/isc/pthreads/include/isc/
H A Dmutex.h103 ((pthread_mutex_trylock((&(mp)->mutex)) == 0) ? \
107 ((pthread_mutex_trylock((mp)) == 0) ? \
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_data.c328 if ((pthread_mutex_trylock) == 0)
371 return pthread_mutex_trylock(obj);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp56 INTERCEPTOR(int, pthread_mutex_trylock, pthread_mutex_t *m) {
58 int res = REAL(pthread_mutex_trylock)(m);
296 INTERCEPT_FUNCTION(pthread_mutex_trylock);
/freebsd-13-stable/lib/libusb/
H A Dlibusb10.h39 #define CTX_TRYLOCK(ctx) pthread_mutex_trylock(&(ctx)->ctx_lock)
/freebsd-13-stable/contrib/libevent/
H A Devthread_pthread.c73 return pthread_mutex_trylock(lock);
/freebsd-13-stable/cddl/contrib/opensolaris/head/
H A Dthread.h54 #define mutex_trylock(l) pthread_mutex_trylock(l)
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Devthread_pthread.c73 return pthread_mutex_trylock(lock);
/freebsd-13-stable/contrib/apr/locks/unix/
H A Dthread_mutex.c181 rv = pthread_mutex_trylock(&mutex->mutex);
200 rv = pthread_mutex_trylock(&mutex->mutex);
H A Dproc_mutex.c788 rv = pthread_mutex_trylock(&proc_pthread_mutex(mutex));
/freebsd-13-stable/sbin/hastd/
H A Dsynch.h79 error = pthread_mutex_trylock(lock);
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/
H A Djemalloc_FreeBSD.h154 #define pthread_mutex_trylock _pthread_mutex_trylock macro
/freebsd-13-stable/contrib/openbsm/bin/auditdistd/
H A Dsynch.h77 error = pthread_mutex_trylock(lock);
/freebsd-13-stable/contrib/sendmail/libmilter/
H A Dlibmilter.h139 # define smutex_trylock(mp) (pthread_mutex_trylock(mp) == 0)
/freebsd-13-stable/lib/libc/include/
H A Dnamespace.h159 #define pthread_mutex_trylock _pthread_mutex_trylock macro
H A Dun-namespace.h140 #undef pthread_mutex_trylock macro
/freebsd-13-stable/include/
H A Dpthread.h241 int pthread_mutex_trylock(pthread_mutex_t * __mutex)
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dmutex.h93 # define MALLOC_MUTEX_TRYLOCK(m) (pthread_mutex_trylock(&(m)->lock) != 0)
/freebsd-13-stable/lib/libc/gen/
H A D_pthread_stubs.c235 STUB_FUNC1(pthread_mutex_trylock, PJT_MUTEX_TRYLOCK, int, void *)
/freebsd-13-stable/share/man/man3/
H A DMakefile413 pthread_mutex_trylock.3 \
/freebsd-13-stable/lib/libthr/thread/
H A Dthr_mutex.c96 __weak_reference(__Tthr_mutex_trylock, pthread_mutex_trylock);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1249 TSAN_INTERCEPTOR(int, pthread_mutex_trylock, void *m) {
1250 SCOPED_TSAN_INTERCEPTOR(pthread_mutex_trylock, m);
1251 int res = REAL(pthread_mutex_trylock)(m);
2690 TSAN_INTERCEPT(pthread_mutex_trylock);
/freebsd-13-stable/sys/contrib/openzfs/lib/libzpool/
H A Dkernel.c187 error = pthread_mutex_trylock(&mp->m_lock);
/freebsd-13-stable/contrib/ofed/libibverbs/
H A Dverbs.c378 if (!pthread_mutex_trylock(&t->in_use))

Completed in 283 milliseconds

12