/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | ProcessRunLock.cpp | 30 ::pthread_rwlock_unlock(&m_rwlock); in ReadTryLock() 35 return ::pthread_rwlock_unlock(&m_rwlock) == 0; in ReadUnlock() 41 ::pthread_rwlock_unlock(&m_rwlock); in SetRunning() 51 ::pthread_rwlock_unlock(&m_rwlock); in TrySetRunning() 60 ::pthread_rwlock_unlock(&m_rwlock); in SetStopped()
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | RWMutex.hpp | 67 bool unlock_shared() { return pthread_rwlock_unlock(&_lock) == 0; } 69 bool unlock() { return pthread_rwlock_unlock(&_lock) == 0; } 85 pthread_rwlock_unlock(pthread_rwlock_t *lock); 97 return !pthread_create || (pthread_rwlock_unlock(&_lock) == 0); 103 return !pthread_create || (pthread_rwlock_unlock(&_lock) == 0);
|
/freebsd/sys/contrib/openzfs/lib/libspl/os/freebsd/ |
H A D | mnttab.c | 167 (void) pthread_rwlock_unlock(&gsfs_lock); in statfs_init() 175 (void) pthread_rwlock_unlock(&gsfs_lock); in statfs_init() 204 (void) pthread_rwlock_unlock(&gsfs_lock); in getmntany() 207 (void) pthread_rwlock_unlock(&gsfs_lock); in getmntany() 227 (void) pthread_rwlock_unlock(&gsfs_lock); in getmntent() 231 (void) pthread_rwlock_unlock(&gsfs_lock); in getmntent()
|
/freebsd/contrib/netbsd-tests/lib/libpthread/ |
H A D | t_rwlock.c | 96 PTHREAD_REQUIRE(pthread_rwlock_unlock(&lk)); in ATF_TC_BODY() 107 PTHREAD_REQUIRE(pthread_rwlock_unlock(&lk)); in ATF_TC_BODY() 131 PTHREAD_REQUIRE(pthread_rwlock_unlock(&static_rwlock)); in ATF_TC_BODY()
|
/freebsd/usr.sbin/bhyve/ |
H A D | mem.c | 134 perror = pthread_rwlock_unlock(&mmio_rwlock); 189 perror = pthread_rwlock_unlock(&mmio_rwlock); in access_memory() 210 perror = pthread_rwlock_unlock(&mmio_rwlock); in access_memory() 217 perror = pthread_rwlock_unlock(&mmio_rwlock); in access_memory() 309 perror = pthread_rwlock_unlock(&mmio_rwlock); in register_mem_int() 354 perror = pthread_rwlock_unlock(&mmio_rwlock); in unregister_mem()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | RWMutex.cpp | 88 int errorcode = pthread_rwlock_unlock(rwlock); in unlock_shared() 116 int errorcode = pthread_rwlock_unlock(rwlock); in unlock()
|
/freebsd/lib/libc/iconv/ |
H A D | citrus_lock.h | 34 pthread_rwlock_unlock(lock);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
H A D | dd_interceptors.cpp | 156 INTERCEPTOR(int, pthread_rwlock_unlock, pthread_rwlock_t *m) { in INTERCEPTOR() argument 159 return REAL(pthread_rwlock_unlock)(m); in INTERCEPTOR() 313 INTERCEPT_FUNCTION(pthread_rwlock_unlock); in InitializeInterceptors()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/ |
H A D | rtsan_interceptors.cpp | 235 INTERCEPTOR(int, pthread_rwlock_unlock, pthread_rwlock_t *lock) { in INTERCEPTOR() argument 237 return REAL(pthread_rwlock_unlock)(lock); in INTERCEPTOR() 427 INTERCEPT_FUNCTION(pthread_rwlock_unlock); in InitializeInterceptors()
|
/freebsd/contrib/lib9p/ |
H A D | hashtable.h | 89 return (pthread_rwlock_unlock(&h->ht_rwlock)); in ht_unlock()
|
/freebsd/contrib/ofed/opensm/include/complib/ |
H A D | cl_passivelock.h | 306 status = pthread_rwlock_unlock(&p_lock->lock); in cl_plock_release()
|
/freebsd/cddl/contrib/opensolaris/head/ |
H A D | thread.h | 62 #define rw_unlock(l) pthread_rwlock_unlock(l)
|
/freebsd/usr.sbin/rpc.tlsservd/ |
H A D | rpc.tlsservd.c | 454 pthread_rwlock_unlock(&rpctls_rwlock); in rpctlssd_connect_thread() 485 pthread_rwlock_unlock(&rpctls_rwlock); in rpctlssd_handlerecord_2_svc() 526 pthread_rwlock_unlock(&rpctls_rwlock); in rpctlssd_disconnect_2_svc()
|
/freebsd/contrib/openbsm/bin/auditdistd/ |
H A D | synch.h | 133 error = pthread_rwlock_unlock(lock); in rw_unlock()
|
/freebsd/crypto/openssl/crypto/ |
H A D | threads_pthread.c | 125 if (pthread_rwlock_unlock(lock) != 0) in CRYPTO_THREAD_unlock()
|
/freebsd/crypto/heimdal/include/ |
H A D | heim_threads.h | 102 #define HEIMDAL_RWLOCK_unlock(l) pthread_rwlock_unlock(l)
|
/freebsd/lib/libthr/ |
H A D | pthread.map | 97 pthread_rwlock_unlock;
|
/freebsd/sys/contrib/openzfs/cmd/ |
H A D | ztest.c | 2898 (void) pthread_rwlock_unlock(&ztest_name_lock); in ztest_io() 2907 (void) pthread_rwlock_unlock(&zd->zd_zilog_lock); in ztest_io() 2981 (void) pthread_rwlock_unlock(&zd->zd_zilog_lock); in ztest_zil_commit() 3017 (void) pthread_rwlock_unlock(&zd->zd_zilog_lock); in ztest_zil_remount() 3082 (void) pthread_rwlock_unlock(&ztest_name_lock); in ztest_spa_create_destroy() 3372 pthread_rwlock_unlock(&ztest_name_lock); in ztest_vdev_add_remove() 3685 (void) pthread_rwlock_unlock(&ztest_name_lock); in ztest_split_pool() 4801 (void) pthread_rwlock_unlock(&ztest_name_lock); in ztest_dmu_objset_create_destroy() 4815 (void) pthread_rwlock_unlock(&ztest_name_lock); in ztest_dmu_snapshot_create_destroy() 4973 (void) pthread_rwlock_unlock(&ztest_name_lock); in ztest_dsl_dataset_promote_busy() [all …]
|
/freebsd/include/ |
H A D | pthread.h | 269 int pthread_rwlock_unlock(pthread_rwlock_t * __rwlock)
|
/freebsd/lib/libc/include/ |
H A D | namespace.h | 181 #define pthread_rwlock_unlock _pthread_rwlock_unlock macro
|
H A D | un-namespace.h | 162 #undef pthread_rwlock_unlock
|
/freebsd/lib/libthr/thread/ |
H A D | thr_rwlock.c | 53 __weak_reference(_Tthr_rwlock_unlock, pthread_rwlock_unlock);
|
/freebsd/contrib/unbound/util/ |
H A D | locks.h | 122 #define lock_rw_unlock(lock) LOCKRET(pthread_rwlock_unlock(lock))
|
/freebsd/lib/libc/gen/ |
H A D | Symbol.map | 56 pthread_rwlock_unlock;
|
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/ |
H A D | rtsan_test_interceptors.cpp | 446 pthread_rwlock_unlock(&rw_lock); in TEST()
|