Searched refs:unlock (Results 1 - 25 of 131) sorted by relevance

123456

/freebsd-11-stable/contrib/gcc/
H A Dgthr-gnat.h41 extern void __gnat_install_locks (void (*lock) (void), void (*unlock) (void));
H A Dgthr-gnat.c60 __gnat_install_locks (void (*lock) (void), void (*unlock) (void))
63 __gnat_task_unlock = unlock;
/freebsd-11-stable/contrib/libstdc++/libsupc++/
H A Dguard.cc156 bool unlock; member in struct:__cxxabiv1::mutex_wrapper
157 mutex_wrapper() : unlock(true)
162 if (unlock)
163 static_mutex->unlock();
170 mw.unlock = false;
187 static_mutex->unlock();
198 static_mutex->unlock();
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dmutex.h30 void unlock();
41 ~ScopedLock() { Mu.unlock(); }
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMutex.h46 bool unlock() { function in class:llvm::sys::SmartMutex
48 impl.unlock();
H A DRWMutex.h79 bool unlock();
148 bool unlock() { function in class:llvm::sys::SmartRWMutex
150 impl.unlock();
193 ~SmartScopedWriter() { mutex.unlock(); }
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dmutex_posix.cpp24 void Mutex::unlock() { function in class:gwp_asan::Mutex
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DRWMutex.hpp34 bool unlock() { return true; } function in class:libunwind::RWMutex
53 bool unlock() {
69 bool unlock() { return pthread_rwlock_unlock(&_lock) == 0; }
102 bool unlock() {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dmutex.h44 void unlock();
62 ~ScopedLock() { Mutex.unlock(); }
H A Dtsd.h57 inline void unlock() { Mutex.unlock(); } function
/freebsd-11-stable/sys/compat/linux/
H A Dcheck_internal_locks.d64 linuxulator*:locks:futex_mtx:unlock
67 printf("ERROR: unlock attempt of unlocked %s (%p),", probefunc, arg0);
74 linuxulator*:locks:futex_mtx:unlock
/freebsd-11-stable/usr.sbin/pw/tests/
H A Dpw_lock_test.sh14 ${PW} unlock test || atf_fail "Locking the user"
26 ${PW} unlock 1001 || atf_fail "Unlocking the user"
34 ${PW} unlock 1001 || atf_fail "Unlocking the user"
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Datomic.c50 // lock() and unlock() functions.
60 __inline static void unlock(Lock *l) { function
81 __inline static void unlock(Lock *l) { OSSpinLockUnlock(l); } function
90 __inline static void unlock(Lock *l) { function
183 unlock(l);
197 unlock(l);
217 unlock(l);
221 unlock(l);
238 unlock(l);
267 unlock(
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dconcurrence.h142 void unlock() function in class:__mutex
189 void unlock() function in class:__recursive_mutex
220 { _M_device.unlock(); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DRWMutex.cpp30 bool RWMutexImpl::unlock() { return true; } function in class:RWMutexImpl
101 RWMutexImpl::unlock()
130 bool RWMutexImpl::unlock() {
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dshared_mutex.cpp51 __shared_mutex_base::unlock() function in class:__shared_mutex_base
111 void shared_timed_mutex::unlock() { return __base.unlock(); } function in class:shared_timed_mutex
H A Dmutex.cpp45 mutex::unlock() _NOEXCEPT
49 _LIBCPP_ASSERT(ec == 0, "call to mutex::unlock failed");
77 recursive_mutex::unlock() _NOEXCEPT
81 _LIBCPP_ASSERT(e == 0, "call to recursive_mutex::unlock() failed");
124 timed_mutex::unlock() _NOEXCEPT
179 recursive_timed_mutex::unlock() _NOEXCEPT
185 lk.unlock();
/freebsd-11-stable/usr.sbin/rpc.lockd/
H A Dlockd_lock.h10 enum nlm_stats unlock(nlm4_lock *lock, const int flags);
16 /* flags for testlock, getlock & unlock */
20 #define LOCK_CANCEL 0x08 /* cancel, not unlock request (unlock only) */
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_tsd.h48 INLINE void unlock() { Mutex.Unlock(); } function
/freebsd-11-stable/contrib/libstdc++/src/
H A Dbitmap_allocator.cc68 __bfl_mutex.unlock();
99 __bfl_mutex.unlock();
/freebsd-11-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dthread.h118 int (*unlock)(unsigned mode, void *lock); member in struct:evthread_lock_callbacks
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DSharedCluster.h53 // it should have locked the mutex, now we will unlock it before we destroy
55 m_mutex.unlock();
83 m_mutex.unlock();
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devthread.c106 target->unlock == cbs->unlock) {
114 if (cbs->alloc && cbs->free && cbs->lock && cbs->unlock) {
270 if (original_lock_fns_.unlock)
271 res = original_lock_fns_.unlock(mode, lock->lock);
429 if (evthread_lock_fns_.unlock)
430 return evthread_lock_fns_.unlock(mode, lock);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h41 static void unlock(atomic_uintptr_t *p, Node *s);
89 void StackDepotBase<Node, kReservedBits, kTabSizeLog>::unlock( function in class:__sanitizer::StackDepotBase
113 unlock(p, s2);
130 unlock(p, s);
171 unlock(p, (Node *)(s & ~1UL));
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dapp.c112 goto unlock;
124 goto unlock;
130 unlock:

Completed in 167 milliseconds

123456