Searched defs:unlock (Results 1 - 25 of 90) sorted by relevance

1234

/external/clang/test/Modules/Inputs/thread-safety/
H A Dc.h10 inline void unlock(X &x) __attribute__((unlock_function(x.m))) { x.m.unlock(); } function
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
H A Dtry_lock.pass.cpp30 void unlock() {} function in struct:mutex
50 lk.unlock();
H A Dunlock.pass.cpp16 // void unlock();
26 void unlock() {unlock_called = true;} function in struct:mutex
34 lk.unlock();
39 lk.unlock();
49 lk.unlock();
H A Dtry_lock_for.pass.cpp35 void unlock() {} function in struct:mutex
55 lk.unlock();
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/
H A Dmember_swap.pass.cpp24 void unlock() {} function in struct:mutex
H A Dnonmember_swap.pass.cpp25 void unlock() {} function in struct:mutex
H A Drelease.pass.cpp26 void unlock() {++unlock_count;} function in struct:mutex
/external/opencv3/3rdparty/openexr/IlmThread/
H A DIlmThreadMutex.cpp54 void Mutex::unlock () const {} function in class:IlmThread::Mutex
H A DIlmThreadMutexWin32.cpp67 Mutex::unlock () const function in class:IlmThread::Mutex
H A DIlmThreadMutexPosix.cpp76 Mutex::unlock () const function in class:IlmThread::Mutex
79 Iex::throwErrnoExc ("Cannot unlock mutex (%T).", error);
/external/libcxx/src/
H A Dshared_mutex.cpp50 __shared_mutex_base::unlock() function in class:__shared_mutex_base
110 void shared_timed_mutex::unlock() { return __base.unlock(); } function in class:shared_timed_mutex
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
H A Dwait.exception.pass.cpp38 void unlock() {} function in struct:Mutex
H A Dwait_for.exception.pass.cpp38 void unlock() {} function in struct:Mutex
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DMutex.cpp91 ** Function: unlock
98 void Mutex::unlock () function in class:Mutex
103 ALOGE ("Mutex::unlock: fail unlock; error=0x%X", res);
/external/parameter-framework/asio/include/asio/detail/
H A Dposix_mutex.hpp52 void unlock() function in class:asio::detail::posix_mutex
H A Dscoped_lock.hpp22 // Helper class to lock and unlock a mutex automatically.
50 mutex_.unlock();
64 void unlock() function in class:asio::detail::scoped_lock
68 mutex_.unlock();
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dposix_mutex.hpp52 void unlock() function in class:asio::detail::posix_mutex
H A Dscoped_lock.hpp22 // Helper class to lock and unlock a mutex automatically.
50 mutex_.unlock();
64 void unlock() function in class:asio::detail::scoped_lock
68 mutex_.unlock();
/external/webrtc/webrtc/base/
H A Dsigslot.cc28 void multi_threaded_global::unlock() { function in class:sigslot::multi_threaded_global
48 void multi_threaded_local::unlock() { function in class:sigslot::multi_threaded_local
/external/deqp/framework/delibs/decpp/
H A DdeMutex.hpp44 void unlock (void) throw();
65 ~ScopedLock (void) { m_mutex.unlock(); }
102 inline void Mutex::unlock (void) throw() function in class:de::Mutex
/external/harfbuzz_ng/src/
H A Dhb-mutex-private.hh136 inline void unlock (void) { hb_mutex_impl_unlock (&m); } function in struct:hb_mutex_t
/external/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/
H A Dlock.pass.cpp38 void unlock() {locked_ = false;} function in class:L0
61 void unlock() {locked_ = false;} function in class:L1
84 void unlock() {locked_ = false;} function in class:L2
H A Dtry_lock.pass.cpp33 void unlock() {locked_ = false;} function in class:L0
51 void unlock() {locked_ = false;} function in class:L1
69 void unlock() {locked_ = false;} function in class:L2
/external/llvm/include/llvm/Support/
H A DUniqueLock.h24 /// and unlocked after destruction. unique_lock can also unlock the mutex
40 M->unlock();
47 ~unique_lock() { if (owns_lock()) M->unlock(); }
56 void unlock() { function in class:llvm::unique_lock
59 M->unlock();
/external/autotest/server/cros/
H A Dhost_lock_manager.py15 A caller can lock or unlock one or more DUTs. If the caller fails to unlock()
16 locked hosts before the instance is destroyed, it will attempt to unlock() the
25 manager.unlock()
37 UNLOCK = 'unlock'
70 logging.warning('Caller failed to unlock %r! Forcing unlock now.',
72 self.unlock()
119 def unlock(self, hosts=None): member in class:HostLockManager
178 """Context manager to make sure that a HostLockManager will always unlock
[all...]

Completed in 493 milliseconds

1234